瀏覽器IE6不支援的CSS樣式的選擇符

來源:互聯網
上載者:User

1. child selector

h1 > strong { color:red;} 無效

只能使用 h1 strong {color:red; }

不支援子選擇符,但支援派生選擇符。

2.sibling selector

li+li { font-style:bold; } 無效。

3.Pseudo-Class Selector有限支援

a:link :visited { color:#fff;},只認最後一個:visited.

最好按如下順序寫:

a:link {color: navy;}

a:visited {color: gray;}

a:hover {color: red;}

a:active {color: yellow;}

IE6對偽類選擇符支援,也僅限於超鏈。

4 attribute selector

h1[class] {color: silver;} 無效。

上面的不支援,Eric Meyer的CSS權威指南都指出了,我也在主流環境驗證過,IE6 SP1/WIN XP。

5. Eric Meyer書中說,IE對多類選擇符不支援並不正確,至少對IE6而言,並非如此。

.warning.urgent {background: silver;} 有效,並非無效。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.