Is there a way to create an ordered list that starts at a number other than one? For example, how would I create a list from 5 to 7 like this:
5. blah
6. blah blah
7. blah blah blah
| SitePoint Sponsor |




Is there a way to create an ordered list that starts at a number other than one? For example, how would I create a list from 5 to 7 like this:
5. blah
6. blah blah
7. blah blah blah

Originally Posted by SantaRosaDesign
Code:<ol start="5"> <li>blah</li> <li>blah blah</li> <li>blah blah blah</li> </ol>
Bookmarks