gpt4 book ai didi

css - iPad Pro 12.9 媒体查询不起作用

转载 作者:行者123 更新时间:2023-11-28 11:25:49 27 4
gpt4 key购买 nike

我正在尝试为 iPad Pro 12.9 英寸版本实现以下媒体查询,但当我检查实际的 iPad 设备时它不起作用。

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

上面的媒体查询在 Chrome 上工作但是当我检查实际设备甚至 xCode 上的模拟器时,它不起作用。我也尝试过 (-webkit-min-device-pixel-ratio: 2 )。相同的结果

最佳答案

这里是 iPad Pro 12.9 英寸的工作代码。由于缺乏大量信息,我费了很大力气,但我现在找到了工作参数。

// For both Portrait and Landscape
@media only screen
and (min-device-width: 768px)
and (max-device-width: 2732px)
and (-webkit-min-device-pixel-ratio: 2){
// CSS HERE
}

// For landscape
@media only screen
and (min-device-width: 768px)
and (max-device-width: 2732px)
and (orientation:landscape)
and (-webkit-min-device-pixel-ratio: 2){
// CSS HERE
}

// For Portrait
@media only screen
and (min-device-width: 768px)
and (max-device-width: 2732px)
and (orientation:portrait)
and (-webkit-min-device-pixel-ratio: 2){
// CSS HERE
}

关于css - iPad Pro 12.9 媒体查询不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46610621/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com