css IE 10+和Edge CSS定位

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css IE 10+和Edge CSS定位相关的知识,希望对你有一定的参考价值。

/* target Edge */
@supports (position:-ms-page) {
   body {
     background: blue !important;
   }
}
/* target IE 10 + IE 11 */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
   body {
     background: blue !important;
   }
}

以上是关于css IE 10+和Edge CSS定位的主要内容,如果未能解决你的问题,请参考以下文章

text IE CSS Hacks All - IE6,7,8,9,10,11,Edge

text IE CSS Hacks All - IE6,7,8,9,10,11,Edge

text IE CSS Hacks All - IE6,7,8,9,10,11,Edge

如何在 CSS 中检测 IE 和 Edge 浏览器?

为啥新版IE和Edge不支持CSS滤镜效果?

Edge 和 IE 上的动画 SVG(使用 CSS)是不是有解决方法?