Forum Moderators: not2easy
I'm using a numbered list and would like a one line gap between the items on the list. I've been using a rather untidy work-around by placing two breaks before the closing </li> which does seem to work but may not be valid HTML. Is there a more elegant way using CSS? I've searched but have been unable to come up with a better solution.
BTW. each numbered item often comprises more than one line.
This is what I have been using:
<ol style="list-style-position:outside;">
<li>This is item one><br /><br /></li>
<li>This is item two><br /><br /></li>
</ol>
Many thanks.
how about like this...
<style type="text/css">
<!--
ol {
list-style-position:outside;
}
li {
margin-bottom:25px;
}
-->
</style>
<ol>
<li>This is item one</li>
<li>This is item two</li>
<li>This is item three</li>
</ol>
birdbrain