HTML Ordered List Element (OL)
Details about number order. In ordered lists, it is not possible to continue list numbering automatically from a
previous list or to hide numbering of some list items. However, authors can reset the number of a list item by setting
its value attribute. Numbering continues from the new value for subsequent list items. For example:
Source code:
<OL>
<LI value="10"> makes this list item number 10.<LI>
<LI value="30"> makes this list item number 30.<LI>
<LI> makes this list item number 31.<LI>
</OL>
- makes this list item number 10.
- makes this list item number 30.
- makes this list item number 31.
previous slide |
next slide
Return to Beginning of Presentation
Return to Software Development Library