Lowercase Roman Numerals for ol Lists in CSS
Setting the list-style-type property to lower-roman causes the list bullets to be lowercase or lowercase Roman numerals:
<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-roman;
}
: