vote up 0 vote down star

According to css3.info's selector test, Firefox supports some permutations of the nth-child selector. However, the code shown here (#30) doesn't work for me.

It should select the empty paragraphs, so I edited my code to the following but it doesn't show in Firefox (it works in Opera).

<style type="text/css">
div :nth-child(even) {
	background-color: yellow;
	height: 30px;
}
</style>

<div>
	<div>Does this element match?</div>
	<div></div>
	<div>Does this element match?</div>
	<div></div>
</div>

Is this a bug in the test, or have I made an error somewhere?

flag

2 Answers

vote up 2 vote down check

Hmm... according to this page Firefox does not support :nth-child.

link|flag
Verified - Safari 3 your code works. FF 3 it doesn't. There's also a difference between div:nth-child(even) and div :nth-child(even) – Mike Robinson Apr 10 at 17:21
I just tested 3.0.8 and this was the result for :nth-child()(47 out of 88 failed). Including :nth-child(even) – s_hewitt Apr 10 at 17:22
However, it did pass div :nth-child(2n+0) {} which also selects evens. – s_hewitt Apr 10 at 17:24
After some testing on my own, I think their tests are not working. I saw a lot of duplicate tests, with 1 pass and 1 fail. – s_hewitt Apr 10 at 17:31
I'm aware that Firefox doesn't officially support nth-child, which is why I was suprised that apparently some of those tests passed. I guess the test is broken in some way, since FF doesn't appear to support nth-child in any form. – DisgruntledGoat Apr 10 at 19:08
vote up 0 vote down

if you use jquery this might help you (jquery don't care what browser your user is using:) )

link|flag

Your Answer

Get an OpenID
or

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