PDA

View Full Version : Ordered List: Display letters instead of numbers


RickJ
Nov 14, 2006, 08:27 AM
How can I use lower case letters, instead of numbers, in an ordered list?

When I use this code for my ordered list it displays numbers:


<ol>
<li>first thing on the list</li>
<li>second thing on the list </li>
</ol>

Thanks!

ScottGem
Nov 14, 2006, 08:31 AM
You use the Type attribute Setting a Type of "a".

This site has more details:

http://www.w3.org/TR/html4/struct/lists.html#type-values

RickJ
Nov 14, 2006, 09:05 AM
Hmm. Looks like I have to use style sheets to do what I want. I don't know a style sheet from a bed sheet :o

Can't I just insert a tag or two into the code to tell it to use abc instead of 123?

ScottGem
Nov 14, 2006, 09:28 AM
Try:

<OL Type = "a">