IE条件评论不起作用

时间:2012-01-22 14:47:13

标签: css internet-explorer conditional stylesheet comments

我对IE的条件评论有点问题。

 <link rel = "stylesheet"
       type = "text/css"
       href = "css/stil.css" />

 <!--[if IE]>
  <link rel = "stylesheet"
        type = "text/css"
        href = "css/ie.css" />
 <![endif]--> 

它在IE9中不起作用,IE9加载正常样式表(css / stil.css)而不是我在条件注释中指定的样式表。请帮助:)

1 个答案:

答案 0 :(得分:2)

  

IE9加载正常样式表(css / stil.css),而不是我在条件注释中指定的样式表。

从那句话来看,听起来你并不期望IE下载并应用css/stil.css样式表。应该和将来。它只是下载并应用css/ie.css样式表。可能是你看到css/stil.css的样式你没想到的吗?从表面上看,the conditional comments work fine(我必须在该示例中使用style而不是link元素,但概念是相同的。)