How to make this css code (counters and ;before) cross browser compatible using jquery?
Posted
by jitendra
on Stack Overflow
See other posts from Stack Overflow
or by jitendra
Published on 2010-04-01T07:06:49Z
Indexed on
2010/04/01
7:13 UTC
Read the original article
Hit count: 204
How to make this css code cross browser compatible using jquery. this code only works on firefox and IE8. i wan to use in IE6 and 7 also.
ol {list-style-type: none;}
li:before {content: "(" counter(section, lower-alpha) ") ";}
li { counter-increment: section;}
© Stack Overflow or respective owner