I believe the <li /> is going for the XHTML solution. I think that the LI should have the closing tag proper instead of being a single closed tag as suggested by qslack.
So for the regular HTML versions, I think the answer would be...
Code:
<ol class="abcclass">
<li>Some Text.</li>
<li>Some Text.</li>
<li>Some Text.</li>
</ol>
The "type" should be taken care of by the CSS declaration... list-style-type: lower-alpha. Perhaps note up the CSS like so...
Code:
.abcclass {font: 12px "verdana", "arial", "helvetica", "sans-serif";
padding: 5px;
list-style-position: outside;
list-style-type: lower-alpha;}
Netscape can be picky with CSS at times, so that still may not get it...
That's my guess at it
Bookmarks