I need assistance with writing CSS code that will only be applied to 'desktop' screen sizes when the page is viewed on browsers other than IE and Edge. Here's what I have so far:
@media only screen and (min-width: 981px) /* and XXX */
The 'XXX' part is where I'm stuck. I know that this is the code for checking if IE is present:
@media all and (-ms-high-contrast: active), (-ms-high-contrast: none)
, and for Edge: @supports (-ms-ime-align: auto)
. But I'm unsure how to correctly combine and negate these two clauses.