How to start ordered list from 2 not 1?
with all browser compatibility including IE6 and html css should bevalid
How to start ordered list from 2 not 1?
with all browser compatibility including IE6 and html css should bevalid
this can be done directly via html with the start
attribute
<ol start="2">
<li>item two</li>
<li>item three</li>
</ol>
it's not possible with only css, and it seems like IE doesn't support the start
attribute …
Have you looked at this:
EDIT: Strike that. Doesn't work in IE6. Sorry.
The easiest way I can see is to put the first LI
in but hide it using css