Hello,
When using the list tag, <ul>, it creates a space between the line before and line afterwards. Anyone know how to get rid of this? For example:
Following are my favorite links
* Site a
* Site b
When I translate this into html, it looks like:
Following are my favorite links
* Site a
* Site b
The code is:
<p >Following are my favorite links </p ><ul>
<li>Site a</li>
<li>Site b</li>
</ul>
If I take the <ul> out completely, the space between the paragraph and the bullets goes away - but then it’s not “correct code” for WC3, etc.
Any style sheet ideas to get what I want?
Thanks in advance.
D—