Jul 6, 2005 #1 derwent Programmer Joined May 5, 2004 Messages 428 Location 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 Joined Nov 29, 2002 Messages 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>