Hi! Here is my problem : I have a very long legal document to put on the web. That document should respect that format:
TITLE 1. bla bla bla TITLE 2. bla bla bla TITLE 3. bla bla bla * subbla subbla subbla TITLE 4. bla bla bla 5. bla bla bla * subbla subbla subbla TITLE 6. bla bla bla. * 6.1 subbla subbla subbla; * 6.2subbla subbla subbla
I want to use the ordered list <ol> and define the TITLE as H2 elements. The problem I have is if I do this, I would have to rely on the deprecated element “start†and “value†which I would like to avoid. I could have use the counter-increment property but it doesn't work in IE 6 and I need this page to be cross-browser compatible. Do you know how I can break my ordered list with those <h2> while staying cross-browser compatible and validing strict HTML?
*** here is my actual code (it works but not perfect as I want to get rid of the start= element) : ***
Here is my problem :
I have a very long legal document to put on the web. That document should respect that format:
I want to use the ordered list <ol> and define the TITLE as H2 elements. The problem I have is if I do this, I would have to rely on the deprecated element “start†and “value†which I would like to avoid. I could have use the counter-increment property but it doesn't work in IE 6 and I need this page to be cross-browser compatible.
Do you know how I can break my ordered list with those <h2> while staying cross-browser compatible and validing strict HTML?
***
here is my actual code (it works but not perfect as I want to get rid of the start= element) :
***
Any help?