以下媒体查询同时针对ie10和1e11
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
background-color: blue;
}
有没有办法只针对ie10。
答案 0 :(得分:0)
无论属性值如何,-ms-high-contrast
都针对IE10和IE11。
IE10 +准确无误。
但是我看到人们提出了一个相当黑客的方法,如下所示。
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.selector { property:value\9; } }
注意\9
部分。
请参阅this文章的评论部分。