CSS仅适用于IE9兼容模式下的IE11(不适用于本机IE9)

CSS to apply only on IE11 in compatibility mode of IE9 (not on IE9 native)?

本文关键字:适用于 IE9 IE11 不适用 本机 模式 CSS      更新时间:2023-09-26

我知道如何编写CSS条件语句来发现IE9,但我不知道如何在IE11中运行IE9兼容模式。这和三年前在这里发布的问题差不多。很长一段时间后,我开始寻找新的浏览器。对于这里指定的较新版本,今天有办法做到这一点吗?比方说,这里是代码示例(值不准确):

<!-- Use this in IE11 native -->
table#mystyle td.yes {
   width: 207px;
}
<!-- Use this in IE11 when compatibilty mode is in IE9 -->
table#mystyle td.yes {
   width: 300px;
}

试试这段代码,它可能会有所帮助`

<!--[if IE]>
<style type="text/css">
  /* IE CSS RULES HERE */
</style>
<![endif]-->

`

对于IE支持的css

单击此处