根據css3.info的selector test,Firefox 3.0支持第n個子選擇器的一些排列。但是,顯示的代碼here(#30)不適用於我。Firefox的CSS3「nth-child」支持?
它應該選擇空段落,所以我編輯我的代碼到以下,但它不顯示在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>
這是測試中的錯誤還是我在某處發生了錯誤?
已驗證 - Safari 3代碼有效。 FF 3它沒有。 div與div之間也有區別:nth-child(偶數)和div:n-child(偶數) – 2009-04-10 17:21:39
我剛剛測試了3.0.8,結果如下:nth-child()(88中有47個失敗)。 其中包括:n-child(偶數) – 2009-04-10 17:22:05