我在其中添加了以下条件,<style></style>
但由于某种原因,从 IE 中查看时它不会触发。知道为什么吗?
<!--[if IE]>
According to the conditional comment this is IE<br />
<![endif]-->
它在 div 中也不起作用。我想出一个特定的风格比如灰height:3px
当它是IE
代码在:http: //jsfiddle.net/z4bn8/
我在其中添加了以下条件,<style></style>
但由于某种原因,从 IE 中查看时它不会触发。知道为什么吗?
<!--[if IE]>
According to the conditional comment this is IE<br />
<![endif]-->
它在 div 中也不起作用。我想出一个特定的风格比如灰height:3px
当它是IE
代码在:http: //jsfiddle.net/z4bn8/
我认为在 css 文件或样式标签之间是不可能的。尝试将条件放在样式部分或包含样式表中
[如果 IE] 在 style 或 .css 中不起作用,请尝试以下操作:
<!--[if IE]>
<style type="text/css">
/* css for IE goes here */
</style>
<![endif]-->
见答案:http: //jsfiddle.net/z4bn8/2/