我正在编写一个科尔多瓦应用程序,需要隔离这些谷歌手机以调整样式
鉴于这种:
我正在努力区分任何 Google Pixel 手机。
@media only screen and (min-width: 411px) and (max-width: 731px) {
.myDiv{ background-color: blue; }
}
这会在所有像素上触发 - 在模拟器和物理设备中
@media only screen and (min-width: 411px) and (-webkit-device-pixel-ratio: 3) {
.myDiv{ background-color: blue; }
}
任何像素手机都不会触发 - 3 或 4 像素比例无关紧要
@media screen and (device-width: 411px) and (device-height: 731px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2.6){
.myDiv{ background-color: blue;
}
这也不会在任何像素手机上触发
我什至很难找到一个可用于隔离 Google Pixel 2 XL 的媒体查询——似乎没有发布任何内容——但手机已经有一段时间了?
有没有人有这方面的运气?