IE8和更低评论不起作用

时间:2014-03-15 14:31:50

标签: html css internet-explorer

我在IE上遇到了一些麻烦。我在head部分的页面中设置了以下注释:

<!--[if lte IE 7]>
    <link rel="stylesheet" type="text/css" href="ie7-and-down.css" />
<![endif]-->

但是IE没有检测到那个css文件。有谁知道这个问题?

谢谢。 卡斯帕

1 个答案:

答案 0 :(得分:2)

您目标是&lt; = IE7。

前言

lte - 小于或等于

gte - 大于或等于

这将定位&lt; = IE8

<!--[if lte IE 8]>
    <link rel="stylesheet" type="text/css" href="ie7-and-down.css" />
<![endif]-->

相当于:

[if (gte IE 1) & (lte IE 8)]>