Lettered list option

It would sometimes be useful to have the option to list some things with letters, like:

a. point 1
b. point 2
etc.

You can do this using style sheets.

For example, create an ordered list with a class of lettered-list.

<ol class="lettered-list">
  <li>point 1</li>
  <li>point 2</li>
  <li>point 3</li>
</ol>

Then in your style sheet create a class named lettered-list that applies the list-style-type of lower-alpha.

.lettered-list {
  list-style-type: lower-alpha;
}

These two web pages contain more information about the list-style-type property.

2 Likes

Alright thanks very much, I will try it when I need it again because I didn’t need it after all on the card I was working on :slight_smile: