I found a way to apply media queries to IE using:
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
}
Is there a way do the same to apply CSS to all browsers but IE? Something like:
@media not( (-ms-high-contrast: none), (-ms-high-contrast: active) ) {
}
I'd like to avoid using the HTML tags.