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
  • 45,214
  • 31
  • 101
  • 144

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
  • 64,990
  • 13
  • 160
  • 169
balexandre
  • 71,373
  • 44
  • 228
  • 330