zoukankan      html  css  js  c++  java
  • IE的css hack

    #element {
      color:orange;
    }

    #element {
      *color: white;
    } /* IE6+7, doesn’t work in IE8/9 as IE7 */

    #element {
      _color: red;
    } /* IE6 */

    #element {
      color: green/IE8+9;
    } /* IE8+9 */

    #element {
      color: green/IE8;
    } /* IE8 */

    :root #element {
      color:pink /IE9;
    } /* IE9 */

  • 相关阅读:
    Web基础 网页的血肉CSS
    18
    19
    20
    17
    16
    15
    13
    14
    12
  • 原文地址:https://www.cnblogs.com/liuzhenwei/p/5567720.html
Copyright © 2011-2022 走看看