答案 0 :(得分:0)
这是一个可能适合您的示例示例
直到IE9
<!--[if IE ]>
<style> .someclass{
text-align: center;
background: #00ADEF;
color: #fff;
visibility:hidden; // in case of hiding
}
#someotherclass{
display: block !important;
visibility:visible; // in case of visible
}
</style>
<![endif]-->
这是针对IE9之后的
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
enter your CSS here
}