Possible duplicate:
Right way to create a nested HTML list?
I want to do the following in HTML:
1. One 2. Two 1. Inner One 2. Inner Two 3. Three
One of the methods -
<ol> <li>One</li> <li>Two</li> <ol> <li>Inner One</li> <li>inner Two</li> </ol> <li>Three</li> </ol>
But according to the correct way to create a nested HTML list? This is not the right way to do this. The "correct" way gives this:
1. One 2. Two 3. 1. Inner One 2. Inner Two 4. Three
So, is there a suitable way to nest ordered lists without extra numbers for nested lists?
source share