Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ordered list format 1

Status
Not open for further replies.

derwent

Programmer
May 5, 2004
428
GB
Is it possible to use an ordered list to create something like:

1. kjdhfj
2. hsdgfh
2.1 jashgdh
2.2 akjdhfj
3. jdfhj
3.1 ahjsdg
3.11 akjdh
3.12 jsdh
3.2 ksjdhfj
4. sjhdfgh

 
Hi

You can set a start value for a nested list, but only in integer values:

<OL>
<LI>1 </LI>
<LI>2</LI>
<OL start=2>
<LI>2.1</LI>
<LI>2.2</LI>
</OL>
<LI>3</LI>
<LI>4 </LI>
</OL>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top