如何使用CSS定位Microsoft Edge?

时间:2015-10-05 03:43:52

标签: css browser-detection microsoft-edge

我想定位Edge并让flexbox的行为与Firefox 33 / Chrome相似,for more detail see this question

可以在CSS中定位Edge吗?

1 个答案:

答案 0 :(得分:151)

要定位Edge,我们可以检查-ms-ime-align支持,Edge是唯一支持此属性的Microsoft浏览器:

@supports (-ms-ime-align: auto) {
  .selector {
        color: red;
  }
}

或者这个单行(也适用于Edge和所有IE):

_:-ms-lang(x), .selector { color: red; }

可以在this article中找到进一步的解释,包括支持特定版本Edge的变体。