CSS Hack 使用總結

來源:互聯網
上載者:User
1. ie6單獨設定屬性只要這樣寫*html .class{}這裡的.clss換成你想要的名稱就可以。也可以是id的。
2.執行個體
p {color:red;*color:pink;_color:yellow;_color /* */:green;}第一個color所有瀏覽器可讀第二個color所有IE系瀏覽器可讀第三個color只有IE5、IE6可讀第四個只有IE5可讀
3. IE7不錯的hack方式:使用“*+html”!
樣本如下:XML/HTML代碼Example Source Code    #example { color: #333; } /* Moz */    * html #example { color: #666; } /* IE6 */    *+html #example { color: #999; } /* IE7 */    
那麼在firefox下字型顏色顯示為#333,IE6下字型顏色顯示為#666,IE7下字型顏色顯示為#999,並且它們互不干擾!這樣處理也可以,而且適用於行內寫法(<div style="....................">):XML/HTML代碼width:100px; /* Mozilla */    +width:110px; /* IE7 */    _width:120px; /* IE6 */   順序不能破壞,因為越往下越能相容上面的,就是說IE6認得“ + ”。
相關文章

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.