0

我在其中添加了以下条件,<style></style>但由于某种原因,从 IE 中查看时它不会触发。知道为什么吗?

<!--[if IE]>
According to the conditional comment this is IE<br />
<![endif]-->

它在 div 中也不起作用。我想出一个特定的风格比如灰height:3px当它是IE

代码在:http: //jsfiddle.net/z4bn8/

4

3 回答 3

0

我认为在 css 文件或样式标签之间是不可能的。尝试将条件放在样式部分或包含样式表中

于 2012-06-26T14:48:05.677 回答
0

[如果 IE] 在 style 或 .css 中不起作用,请尝试以下操作:

<!--[if IE]>
<style type="text/css">
/* css for IE goes here */
</style>
<![endif]-->
于 2012-06-26T14:49:35.060 回答
0

见答案:http: //jsfiddle.net/z4bn8/2/

于 2012-06-26T15:20:35.837 回答