0

根据 css3.info 的selector test,Firefox 3.0 支持 nth-child 选择器的一些排列。但是,此处显示的代码(#30) 对我不起作用。

它应该选择空段落,所以我将代码编辑为以下内容,但它没有在 Firefox 中显示(它在 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>

这是测试中的错误,还是我在某处犯了错误?

4

3 回答 3

3

嗯...根据此页面Firefox 3.0 不支持:nth-child.

于 2009-04-10T17:19:14.300 回答
1

如果您使用 jquery ,这可能会对您有所帮助(jquery 不在乎您的用户使用的是什么浏览器:))

于 2009-04-10T17:29:12.467 回答
1

在 Firefox 3.5 中,您的测试用例现在可以按预期工作。

于 2009-12-04T23:41:39.237 回答