Im writing a cordova app and need to isolate these google phones to adjust styling
given this:
Im struggling to differentiate between any of the Google Pixel Phones.
@media only screen and (min-width: 411px) and (max-width: 731px) {
.myDiv{ background-color: blue; }
}
this triggers on all Pixels - both in emulators and physical devices
@media only screen and (min-width: 411px) and (-webkit-device-pixel-ratio: 3) {
.myDiv{ background-color: blue; }
}
this does not trigger at all with any pixel phone - dosnt matter if 3 or 4 pixel ratio
@media screen and (device-width: 411px) and (device-height: 731px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2.6){
.myDiv{ background-color: blue;
}
this also does not trigger on any pixel phone
im struggling to find even ONE media query that works for isolating the Google Pixel 2 XL - nothing seems to have been posted - but the phone has been out for a while?
Has anyone had any luck with this?