<ol>
<li>Next page</li>
<ol>
<li>Links to other pages</li>
<li>Images</li>
</ol>
<li>Next page</li>
<ol>
<li>Change colours</li>
</ol>
</ol>
Which produces
- Next page
- Links to other pages
- Images
- Next page
- Change colours
But although it worked W3C said it was not valid and insisted on
<ol>
<li>Next page</li>
<li style="list-style: none">
<ol>
<li>Links to other pages</li>
<li>Images</li>
</ol>
</li>
<li>Next page</li>
<li style="list-style: none">
<ol>
<li>Change colours</li>
</ol>
</li>
</ol>
Which produced similar
- Next page
- Links to other pages
- Images
- Next page
- Change colours
No comments:
Post a Comment