webrebuild.org第四届年会——金秋四城联动

IE 特有注释(hack)

IE特有注释格式:

html
<!--[if *condition IE *version]>contend<![endif]-->

*condition 值说明:

  • gt: greater than,选择条件版本以上版本,不包含条件版本
  • lt: less than,选择条件版本以下版本,不包含条件版本
  • gte: greater than or equal,选择条件版本以上版本,包含条件版本
  • lte : less than or equal,选择条件版本以下版本,包含条件版本

ex.:

html
<!--[if lt IE 7.0]>IE7.0以下可见(不包括ie7.0)<![endif]-->

相关阅读

  1. 浏览器特定选择器(hack)

1 条留言