Ouch, that is one horrible pice of markup. You should do the following
<HTML>
<BODY>
<UL>
<LI>item1<BR /></LI>
<LI>litem2<BR /><LI>
<LI>item3<BR /></LI>
</UL>
</BODY>
</HTML>
or even better:
<HTML>
<BODY>
<UL>
<LI>item1</LI>
<LI>litem2</LI>
<LI>item3</LI>
</UL>
</BODY>
</HTML>
and put the following rule in your stylesheet:
LI { margin-bottom: 1em; }
/ Jonas Sicking
"rvj" <[EMAIL PROTECTED]> wrote in message
933ngr$[EMAIL PROTECTED]">news:933ngr$[EMAIL PROTECTED]...
> Under IE I used two <BR> element to separate <LI> elements i.e. to
generate
> a single line space
>
> However under Mozilla this generates two lines spaces. Since <BR> is not
> well formed what should I use to generate single line spacing?
>
>
> <HTML>
> <BODY >
> <LI>item1</LI>
> <BR><BR>
> <LI>litem2<LI>
> <BR><BR>
> <LI>item3</LI>
> </BODY>
> </HTML>
>
>