css Hack

144 阅读1分钟
  1. _          IE6
  2. *          IE6/7
  3. *+         IE7
  4. \9         IE6/7/8
  5. \0         IE8
  6. !important 提高元素优先级,兼容所有版本
  7. 条件hack
      <!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7"><![endif]--> IE7以下版本
      <!--[if IE 7]><html class="no-js lt-ie9 lt-ie8"><![endif]--> IE7
      <!--[if IE 8]> <html class="no-js lt-ie9"><![endif]--> IE8
      <!--[if gt IE 8]><!--><html class="no-js"><!--<![endif]--> IE8以上