Lowercase Greek Letters for ol Lists in CSS
The list-style-type
property value lower-greek
specifies numbering in lowercase Greek 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-greek;
}
: