IE6 css hack:

1. *html Selector {} /* Selector 表示 css选择器 下同 */
2. Selector { _property: value; } /* property: value 表示 css 的属性名: 属性值 下同 */
3. Selector { _property/**/: /**/value; }
4. Selector { -property: value; } /*IE6 css hack常用习惯推荐使用下划线_ */

IE7 css hack:

1. *+html Selector {}
2. *:first-child+html Selector {}

IE8 css hack:

Selector { /* 注意看value值的 */
property: value1; /* W3C MODEL */
property: value2\0; /* IE 8+ */
property: value1\9\0; /* IE 9+ */
}

IE6、IE7、IE8共有的css hack:

Selector { property: value\9; }

IE6、IE7共有的css hack:

1. Selector { *property: value; }
2. Selector { #property: value; }
3. Selector { +property: value; }

IE8+ css hack:

Selector { property: value\0; }

IE9+ css hack:

Selector { property: value\9\0; }

单独区分IE8 和IE9

.Selector{margin-left:-2px\0}【ie8和ie9均可识别\0】
:root .Selector{margin-left:0\9}【只有ie9可识别:root】

判断方式:
<!–[if !IE]><!–> 除IE外都可识别 <!–<![endif]–>
<!–[if IE]> 所有的IE可识别 <![endif]–>
<!–[if IE 6]> 仅IE6可识别 <![endif]–>
<!–[if lt IE 6]> IE6以及IE6以下版本可识别 <![endif]–>
<!–[if gte IE 6]> IE6以及IE6以上版本可识别 <![endif]–>
<!–[if IE 7]> 仅IE7可识别 <![endif]–>
<!–[if lt IE 7]> IE7以及IE7以下版本可识别 <![endif]–>
<!–[if gte IE 7]> IE7以及IE7以上版本可识别 <![endif]–>
<!–[if IE 8]> 仅IE8可识别 <![endif]–>
<!–[if IE 9]> 仅IE9可识别 <![endif]–>

最新文章

  1. [转]extjs组件添加事件监听的三种方式
  2. python——连接Oracle数据库
  3. 夺命雷公狗-----React---22--小案例之react经典案例todos(完成数据的遍历)
  4. Python小知识
  5. --with-http_realip_module选项(后台Nginx服务器记录原始客户端的IP地址 )
  6. Daily Scrum – 1/6
  7. java构造函数,java的静态块理解
  8. substr
  9. Spring MVC定义拦截器
  10. mac usb转串口 连接树莓PI
  11. hdu-3046-Pleasant sheep and big big wolf(最大流最小割)
  12. (原)ubuntu14及ubuntu16中安装docker
  13. Java框架之Spring(五)
  14. Python Selenium 之数据驱动测试
  15. 谓词筛选表达式的扩展库PredicateLib
  16. GIT-windows系统部署git服务器
  17. 如何用ABP框架快速完成项目(13) - 用ABP遇到难题项目受阻时如何避免项目延迟
  18. ubuntu安装和分区方案
  19. css3 transform属性多值的顺序问题
  20. 比特币交易本质--UTXO(Unspent Transaction Output)

热门文章

  1. mysql主从库
  2. HDOJ 5213
  3. 洛谷P1061 Jam的计数法
  4. Log4J使用详情
  5. Angular2.X 笔记
  6. iOS 内存管理实践
  7. MySQL---笔记之视图的使用详解
  8. Redhat常用指令
  9. 【转】C语言中整型运算取Ceiling问题
  10. html+vlc 播放多视频