2

How can I select the opposite of the following media query?

@media only screen and (-webkit-min-device-pixel-ratio: 2) { }

almost as if I were saying (pseudocode of course)

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
....
} else {
....
}
ʞɔıu
  • 47,148
  • 35
  • 106
  • 149

1 Answers1

7

You can use not

https://developer.mozilla.org/en/CSS/Media_queries

@media not screen and (-webkit-min-device-pixel-ratio: 2) { ... }
cimmanon
  • 67,211
  • 17
  • 165
  • 171
balexandre
  • 73,608
  • 45
  • 233
  • 342