ie10只有媒体查询

时间:2018-02-09 15:45:46

标签: html css

以下媒体查询同时针对ie10和1e11

  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    background-color: blue;
  }

有没有办法只针对ie10。

1 个答案:

答案 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文章的评论部分。