欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

IE hack条件写法

程序员文章站 2022-06-11 13:44:39
最近制作下拉菜单时,打算用纯css,忽又看到令人头痛的css hack代码(平时很少关注),记录下来以作备用。 ………….&l...
最近制作下拉菜单时,打算用纯css,忽又看到令人头痛的css hack代码(平时很少关注),记录下来以作备用。

<!–[if lte ie 6]>………….<![endif]–>

ite:less than or equal to意思是小于或等于ie6浏览器,用于ie浏览器的条件注释,常用于csshack,针对ie的js等。

以下是各种情况,未验证。


1. <!–[if !ie]><!–> 除ie外都可识别 <!–<![endif]–>
2. <!–[if ie]> 所有的ie可识别 <![endif]–>
3. <!–[if ie 5.0]> 只有ie5.0可以识别 <![endif]–>
4. <!–[if ie 5]> 仅ie5.0与ie5.5可以识别 <![endif]–>
5. <!–[if gt ie 5.0]> ie5.0以及ie5.0以上版本都可以识别 <![endif]–>
6. <!–[if ie 6]> 仅ie6可识别 <![endif]–>
7. <!–[if lt ie 6]> ie6以及ie6以下版本可识别 <![endif]–>
8. <!–[if gte ie 6]> ie6以及ie6以上版本可识别 <![endif]–>
9. <!–[if ie 7]> 仅ie7可识别 <![endif]–>
10. <!–[if lt ie 7]> ie7以及ie7以下版本可识别 <![endif]–>
11. <!–[if gte ie 7]> ie7以及ie7以上版本可识别 <![endif]–>
相关标签: IE hack 条件