当前位置:Gxlcms > css > CssHackie6,7,8的hack分别是什么

CssHackie6,7,8的hack分别是什么

时间:2021-07-01 10:21:17 帮助过:127人阅读

针对不同的浏览器写不同的CSS code的过程,就是CSS hack。

示例如下:

#test       {  
        width:300px;  
        height:300px;  
        background-color:blue;      /*firefox*/
        background-color:red\9;      /*all ie*/
        background-color:yellow;    /*ie8*/
        +background-color:pink;        /*ie7*/
        _background-color:orange;       /*ie6*/    } 
        :root #test { background-color:purple\9; }  /*ie9*/
    @media all and (min-width:0px){ #test {background-color:black;} }  /*opera*/
    @media screen and (-webkit-min-device-pixel-ratio:0){ #test {background-color:gray;} }       /*chrome and safari*/

人气教程排行