關於各瀏覽器對CSS偽類以既(selector)選取器的支援

來源:互聯網
上載者:User
說明:√的意思就是全支援
           Δ的意思就是支援但有些部題存在
          Χ的意思很明顯就是不支援了

一.對CSS偽類的支援:


二:對(selector)選取器的支援

看完上面的列表不知道大家有沒有發現一個問題,IE6對.class選取器的支援竟然是Δ,很納悶平時在IE6下用.class並沒有發現任何問題啊。這裡怎麼會是Δ,後來看了說明才知道原來是對雙重類的解析上的確存在問題。不明白我說什嗎?好,直接給代碼,分別在IE6和其它的瀏覽器下過行看看就知道結果

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標題文檔</title>
<style type="text/css">
    .red.green { color:blue;}
    .green { color:green; }
    .red { color:red;}
</style>
</head>
<body>
<p class="green red">test</p>
</body>
</html>

如果你對css的優先順序的計算有點瞭解的話,就應該知道P裡的test的顏色應該是藍色,.red.green的優先順序為0020,.red的優先順序為0010, 沒錯,這在其它瀏覽器的確是藍色,但用IE6運行看看,竟然是紅色的。在IE6中,最後一個類的樣式會覆蓋全面類的樣式,但它對css優先順序的演算法是錯誤的。這就是為什麼上面的表中對.class的技持是Δ。

相關文章

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.