css hack 記錄

來源:互聯網
上載者:User

 

點評:css hack 記錄,做前端開發的朋友可以看下。

   ——IE6—— IE7————IE8——FF2————FF3——— Opera9.5
>property—— Y———— Y———— Y———— N———— N———— N
.property —— Y———— Y———— Y———— N———— N———— N
*property—— Y———— Y———— Y———— N———— N———— N
_property—— Y———— N———— N———— N———— N———— N

color:brown !important; /*用於Opera、Firefox2、Firefox3等現代瀏覽器*/

>color:green !important; /*IE7、IE8可以識別該規則,因此它覆蓋掉了上一條規則*/
color:red; /*所有瀏覽器都可以識別,但是以上兩條規則有!important,所以這條規則被忽視;只有IE6認識並覆蓋掉上兩條規則*/

區別 IE6與 FF:
background:orange;*background:blue;

區別 IE6與 IE7:
background:green !important;background:blue;
區別 IE7與 FF:
background:orange; *background:green;
區別 FF, IE7, IE6:
background:orange;*background:green !important;*background:blue;

瀏覽器優先順序別:FF<IE7<IE6,CSS hack書寫順序一般為FF IE7 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.