CSS Hack代碼範例:相容IE5.0、IE5.5、IE6.0、IE7.0、FF1.5、

來源:互聯網
上載者:User

  本CSS Hack代碼範例,可以直觀顯示各個版本瀏覽器hack的使用。相容IE5.0、IE5.5、IE6.0、IE7.0、FF1.5、FF2.0。
  IE7.0簡體中文正式版發布了,對於我等常和網頁打交道的人來說網頁相容性問題也隨之而來了。IE7.0有一個顯著的改變就是支援!important了,是件好事情,但是也給廣大的在IE6時代使用!important來區分處理IE和FF的網頁製作者帶來了不少問題,Noker也遇到了這個問題,所以翻閱網上資料,寫了下面這個能夠相容現今大多數主流瀏覽器,覆蓋絕大多數使用者的Hack代碼!
  相容瀏覽器版本:IE5.0,IE5.5,IE6.0,IE7.0,Firefox1.5,FireFox2.0
  CSS代碼:(請注意Hack代碼的順序)

 代碼如下 複製代碼
#test{
width:300px;
height:100px;
background:#DDD!important;/*FF*/
background:#FF0;/*IE5.0*/
}
#test/*IE5.5+*/{
*+background:#C0F!important;/*IE7.0*/
*background:#F00;/*IE6.0*/
*background /*IE5.5*/:#F90;
}
相關文章

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.