Possible Duplicate:
Proper way to make HTML nested list?
I'd like to produce the following in HTML:
1. One
2. Two
1. Inner One
2. Inner Two
3. Three
One way is
<ol>
<li>One</li>
<li>Two</li>
<ol>
<li>Inner One</li>
<li>inner Two</li>
</ol>
<li>Three</li>
</ol>
But according to Proper way to make HTML nested list? this is not the proper way to do this. The "proper" way produces this:
1. One
2. Two
3.
1. Inner One
2. Inner Two
4. Three
So, is there a proper way to nest ordered lists without extra numbers appearing for the nested lists?
` to `
`
– Nikola K. Sep 24 '12 at 23:04