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?
You can get a devices width, height, and pixel aspect ratio using Javascript.
Output Device Information Function
Google Pixel 2 XL Output:
Width: 412px
Height: 823px
Pixel Aspect Ratio: 3.5
Media Query to target Google Pixel 2 XL
Try this for Google Pixel XL :
/*Google Pixel XL */ '@media screen and (device-width: 411px) and (device-height: 823px){
}'