现在我知道,<!--[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。
答案 0 :(得分:0)
谢谢@MrLister我解决了我的问题。
打包你的css,它会起作用。
@supports not ((-ms-high-contrast: none) or (-ms-high-contrast: active)) {...}