美文网首页
在css中区别ie浏览器和chrome浏览器

在css中区别ie浏览器和chrome浏览器

作者: 晓函 | 来源:发表于2017-01-01 11:35 被阅读51次

    /***** 样式 Hack ******/

    /* IE6 */
     _color: blue;
    
    /* IE6, IE7 */
     *color: blue; /* 或 #color: blue */
    
    /* 除 IE6 外任何浏览器 */
     color/**/: blue;
    
    /* IE6, IE7, IE8 */
     color: blue\9;
    
    /* IE7, IE8 */
     color/*\**/: blue\9;
    
    /* IE6, IE7 -- 作为 !important 使用 */
     color: blue !ie; /*  !后面的字串可以为任意字串 */
    

    /***** 选择器 Hack ******/

    /* IE6 及以下 */
    * html #uno  { color: red }
    
    /* IE7 */
    *:first-child+html #dos { color: red } 
    
    /* IE7, FF, Saf, Opera  */
    html>body #tres { color: red }
    
    /* IE8, FF, Saf, Opera (除 IE 6,7 外任何浏览器) */
    html>/**/body #cuatro { color: red }
    
    /* Opera 9.27 及以下, safari 2 */
    html:first-child #cinco { color: red }
    
    /* Safari 2-3 */
    html[xmlns*=""] body:last-child #seis { color: red }
    
    /* safari 3+, chrome 1+, opera9+, ff 3.5+ */
    body:nth-of-type(1) #siete { color: red }
    
    /* safari 3+, chrome 1+, opera9+, ff 3.5+ */
    body:first-of-type #ocho {  color: red }
    
    /* saf3+, chrome1+ */
    @media screen and (-webkit-min-device-pixel-ratio:0) {
     #diez  { color: red  }
    }
    
    /* iPhone / webkit 内核移动端 */
    @media screen and (max-device-width: 480px) {
     #veintiseis { color: red  }
    }
    
    /* Safari 2 - 3.1 */
    html[xmlns*=""]:root #trece  { color: red  }
    
    /* Safari 2 - 3.1, Opera 9.25 */
    *|html[xmlns*=""] #catorce { color: red  }
    
    /* 除 IE6-8 外任何浏览器 */
    :root *> #quince { color: red  }
    
    /* IE7 */
    *+html #dieciocho {  color: red }
    
    /* Firefox only. 1+ */
     #veinticuatro,  x:-moz-any-link  { color: red }
    
    /* Firefox 3.0+ */
     #veinticinco,  x:-moz-any-link, x:default  { color: red  }
    
    

    相关文章

      网友评论

          本文标题:在css中区别ie浏览器和chrome浏览器

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