You can change the number at which an ordered list starts like this:
<ol start="3">
<li>item three</li>
<li>item four</li>
</ol>
...but is there a way to make list items have arbitrary numbers, not just consecutive numbering?
<ol>
<li>item two</li>
<li>item six</li>
<li>item nine</li>
</ol>
The only way I can see to do it now is to wrap each <li>
in its own <ol>
which obviously isn't ideal. HTML, Javascript and CSS solutions are welcome.
ps: though the item numbers are arbitrary, they are still ordered, so don't be fretting about the semantics