Have a look at -

http://jsfiddle.net/v23UU/13/

It works in IE and Chrome but not in firefox 4 does anyone know why ? I found something similar but could not figure out how to get it to work ? Thanks for your help !

link|improve this question

Not to say there shouldn't be a way to do this, but is there a reason you can't just use semantic list item tags <li> instead of styling your own arbitrary <div>? On that note, I played around with a few things and couldn't get it to work on firefox 5 either... So I'm curious what the issue is, but I think you should just use <li>'s the way they were meant to be used. – nzifnab Oct 18 '11 at 20:52
Yea..probably going to that..I was just wondering what's going on here. – Misnomer Oct 18 '11 at 21:04
feedback

1 Answer

up vote 2 down vote accepted

This has to do with the fact that list-item counters are not actually CSS counters in Gecko, mostly. See https://bugzilla.mozilla.org/show_bug.cgi?id=4522 for details.

To get it to work, you need to either use CSS counters or have an actual list element around.

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.