根据 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>
这是测试中的错误,还是我在某处犯了错误?