gpt4 book ai didi

css3 媒体查询 : iPad overwrite iphone4 (retina) rules

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

似乎 iPad 规则覆盖了 iPhone4 相关规则。我该如何解决这个问题?

/* iPad */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
#theDiv { width: 400px; }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:landscape) {
#theDiv { width: 600px; }
}


/* iPhoneRetina */
@media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) {
#theDiv { width: 200px; }
}

最佳答案

您可以将 Retina 显示屏的像素比提高到 2。

Here's the link to the Webkit blog post about it .转到标题“条件包含”。

关于css3 媒体查询 : iPad overwrite iphone4 (retina) rules,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7906140/

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