Hello Stack Overflow,
I am attempting to figure out how to create incremented lists with IE6/IE7.
E.G. It should look something like below:
1.0
1.1
1.2
1.3
2.0
2.1
2.2
From what I understand, this is possible to create in CSS with something like this:
UL, OL { counter-reset: item; }
LI { display: block }
LI:before { content: counters(item, "."); counter-increment: item }
However, of course, IE6 and IE7 don't support this.
What options are available to create a proper incremented list in IE6/7? Am I stuck having to hard code this.? Unfortunately, using javascript is not an option.
Thanks for any solutions.