gpt4 book ai didi

css - 媒体查询不适用于移动设备。 CSS

转载 作者:行者123 更新时间:2023-11-28 16:09:51 26 4
gpt4 key购买 nike

我知道这是一个漫长的过程,但我有一个景观媒体查询。它在 chrome 模拟器等上运行良好。但是当我在 iPhone 和 Android 上查看时,媒体查询没有启动。

@media screen and (orientation:landscape) and (max-height: 414px) {
#flip-container {
display: block;
}
.text {
display: none;
}
.nav {
display: none;
}
.logo {
display: none;
}
}

最佳答案

你能指定吗

@media screen and
min-width: XXX px and
max-width: XXX px and
and (orientation:landscape) {
//your css code

}

对于 iPhone,我使用 XCODE 作为模拟器,然后在那里进行测试以检查它是否有任何问题。有时,在大多数情况下,chrome 模拟器无法正常工作。

此外,如果您尝试针对指定的 iPad,您可以使用 iPad 媒体查询。

关于css - 媒体查询不适用于移动设备。 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38509340/

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