CSS hack

作者: 心有心距离 | 来源:发表于2017-12-07 21:30 被阅读0次
    width:100px !important; // ie9,ff,chrome,opera这样的标准浏览器
    
    width:160px; //所有的浏览器;它的本意是只对不认识!important的设置。可是ie7、ie8也认识
    
    +width:160px!important;//ie7
    
    * +html .bb{background-color:#a200ff;}/* 仅IE7 识别 */
    
    width:160px/0!important;//ie8
    
    .background-color:#00deff\9; /*IE6、7、8识别*/
    
    _background-color:#1e0bd1;/*IE6识别*/
    
    @-moz-document url-prefix(){.bb{background-color:#00ff00;}}/* 仅firefox 识别 */ 
    
    @media screen and (-webkit-min-device-pixel-ratio:0){.bb{background-color:#f1ee18}}{} /*safari(Chrome) 有效 */
    
    .bb, x:-moz-any-link, x:default{background-color:#00ff00;}/*IE7 firefox3.5及以下 识别 */ 
    
    background-color:#4cac70\0;/* 仅 Opera 有效 */

    相关文章

      网友评论

          本文标题:CSS hack

          本文链接:https://www.haomeiwen.com/subject/oqajixtx.html