Kleine Latijnse letters voor ol-lijsten in CSS
De waarde lower-alpha van de eigenschap list-style-type maakt de nummering
met kleine (kleine) Latijnse letters:
<ol>
<li>lijst item</li>
<li>lijst item</li>
<li>lijst item</li>
<li>lijst item</li>
<li>lijst item</li>
</ol>
ol {
list-style-type: lower-alpha;
}
: