Lowercase Latin Letters for ol Lists in CSS
The value lower-alpha
of the property list-style-type
makes the numbering in lowercase Latin letters:
<ol>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
</ol>
ol {
list-style-type: lower-alpha;
}
: