I have some styles that need to be only applied on standard computer screens with the resolution 1280px+ (and not on tablets with the same screen width).
@media screen and (min-width:1280px) and (-webkit-device-pixel-ratio: 1) {
//something
}
But not all browsers support -webkit-device-pixel-ratio
, so on those these styles don't get applied at all.
Is it possible to make such browsers ignore -webkit-device-pixel-ratio
and go only with min-width
condition? Without JavaScript.
P.S. the answer "no, it's not possible", backed by official information, will also be accepted.