<ol>
<li>a</li>
<li>b:
<ol>
<li>aa</li>
<li>bb</li>
</ol>
</li>
<li>c</li>
</ol>
I want to make the counter of the second level to be like 1)
and 2)
, is there any build-in way to do this? I think this should be "ordered list's list-style", but I can't find similar property. I know I can use counter
related properties, but to use it, I will have to change <li>
to other container, otherwise, each list item will display two counters.