链接CSS除了IE 10,11

时间:2018-01-22 05:45:09

标签: html css internet-explorer import hyperlink

现在我知道,<!--[if !IE]><!-->...<!--<![endif]-->对IE 10 +不起作用。

所以有一个选项,使用:

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    // IE10+ CSS here
}

但我需要这样的事情:

@media all and not(-ms-high-contrast: none), not(-ms-high-contrast: active) {
    // every browser EXCEPT IE10+ CSS here
} 

有可能吗?

THX。

1 个答案:

答案 0 :(得分:0)

谢谢@MrLister我解决了我的问题。

打包你的css,它会起作用。

@supports not ((-ms-high-contrast: none) or (-ms-high-contrast: active)) {...}