I'd like to apply a series of styles to browsers that meet two criteria:
- Are not Internet Explorer.
- Are a minimum of 1400px.
Individually I can handle each:
@supports(not (-ms-high-contrast:active))
@media(min-width: 1400px)
I'd like to do something like this though:
@media(min-width: 1400px) and @supports(not(-ms-high-contrast:active))
Does CSS allow for this in some way?
I've noticed that this can be done by nesting directives, but I'm hoping to find a cleaner and more readable solution.