Quote:
Originally Posted by Toxaris
There aren't any in the current CSS specs, so also not in the ePUB specs.
|
You're right, but you could simulate it using a style for each list item:
Code:
ol { list-style-type: none; }
li.one:before { content: "One: "; }
li.two:before { content: "Two: "; }
<ol>
<li class="one">Hello</li>
<li class="two">Hello</li>
</ol>
etc.
That would be really tedious to maintain in anything apart from a trivial test document.
You could do it using CSS counters as well, but they are not widely supported.