Inline Romeinse cijfers voor ol-lijsten in CSS
Als u voor de eigenschap list-style-type de waarde
lower-roman instelt, worden de lijstmarkeerders
kleine of inline Romeinse cijfers:
<ol>
<li>lijstitem</li>
<li>lijstitem</li>
<li>lijstitem</li>
<li>lijstitem</li>
<li>lijstitem</li>
</ol>
ol {
list-style-type: lower-roman;
}
: