now I know, that <!--[if !IE]><!-->...<!--<![endif]-->
doesn´t work for IE 10+.
So there is one option, to use:
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
// IE10+ CSS here
}
but I need something like this:
@media all and not(-ms-high-contrast: none), not(-ms-high-contrast: active) {
// every browser EXCEPT IE10+ CSS here
}
It is possible?
Thx.