【发布时间】:2020-03-20 09:50:34
【问题描述】:
我为 11" iPad pro 设置了 CSS 媒体查询,但在 iPad 上无法读取。
我当前的媒体查询是
@media only screen
and (min-width: 1194px)
and (max-width: 1194px)
and (orientation: landscape)
and (-webkit-min-device-pixel-ratio: 2)
{
}
我一直在为 12.9" 工作 css
@media only screen and (min-width: 1366px) and (max-width: 1366px) and (orientation: landscape) {
}
我还检查了横向上 11" 的宽度是 1194px,有人知道仅适用于 ipad pro 11" 的正确 css 媒体查询吗?
【问题讨论】:
标签: css ipad media-queries