Web Services Blog

Change an ordered list from numeric to alpha

When you create an ordered list on your Web page, the default style is numeric like this:

  1. list item 1
  2. list item 2
  3. list item 3

Sometimes however you want your list to be ordered alphabetically instead of numerically. Apply an alpha style to your ordered list like this:

< ol style=”list-style: lower-alpha;” >

a. list item a

b. list item b

c. list item c

</ol>

For more information, see Style Guide/Lists.