Jul 6, 2005 #1 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
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
Jul 6, 2005 1 #2 arst06d Programmer Nov 29, 2002 324 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> Upvote 0 Downvote
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>