我有以下内容:
<!--[if IE]>
<style>
iframe {
margin-top: 0 !important;
display: none;
}
.c-position {
margin-top: 20px !important;
}
br {
display: none;
}
</style>
<![endif]-->
但是当我在 IE10 中看到我的网站时,没有应用 IE 条件语句中的 CSS(例如,iframe 应该消失)。
我什至绑了这个:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9">
所以 IE10 可以识别条件语句。
为什么我做错了?