IPad Pro 的媒体查询在 chrome 中不工作

Media Query for IPad Pro not working in chrome

我用过这个媒体查询:

@media only screen and (min-device-width: 1366px) and (max-device-width: 1024px) and (orientation: landscape) webkit-min-device-pixel-ratio: 2) {}

但是此代码在 chrome ipad pro extension 中不起作用。请任何人帮助。

我认为您放错了值。试试这个:

@media only screen and (max-device-width: 1024px) and (min-device-width: 1366px) and (orientation: landscape) webkit-min-device-pixel-ratio: 2) {}