I want to have automatically created the numbering of a list of items in html, something like this:

1. Heading 1
   Text
1.1 Heading 1.1
   Text
2. Heading 2
  Text
2.1 Heading 2.1
   Text
2.2 Heading 2.2
   Text

It is the same as using Word, Latex or any other that allows you setting styles.

Any JavaScript, CSS, etc?

link|improve this question

60% accept rate
Which browsers/versions do you need to support? IE7? – thirtydot Aug 23 '11 at 10:16
feedback

2 Answers

up vote 4 down vote accepted

This can be done through css/HTML

The following site has a nice tutorial on how to: http://doctype.com/make-ordered-list-go-up-111213-instead-123

link|improve this answer
1  
+1, but note that this isn't supportet by IE7 and below: quirksmode.org/css/contents.html#t21 – oezi Aug 23 '11 at 10:02
Apologies, this is correct it is not supported pre-IE8 – ChrisK Aug 23 '11 at 10:03
feedback

I think it gets down to some javascript. ordered lists etc. will not help you out here. Maybe you can write some smart script using jquery based on child/parent logic that does the trick for you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.