gpt4 book ai didi

CSS if else 条件,移动纵向或横向

转载 作者:行者123 更新时间:2023-12-05 00:10:51 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to determine if a device is in portrait or landscape mode using CSS

(1 个回答)


5年前关闭。




如何使用高度条件。没有javascript。

@media (calc(window-width > window-height)) {
background-color: lightblue;
}
@media (calc(window-width <= window-height)) {
background-color: lightgray;
}

我想寻找移动设备以检测移动设备是否旋转为纵向或横向。

最佳答案

您可以使用方向约束:

@media handheld and (orientation: landscape) {
/* applies to mobiles in landscape mode */
}
@media handheld and (orientation: portrait) {
/* applies to mobiles in portrait mode */
}

多个规则用逗号分隔( OR ),否则使用 AND .

MDN .

关于CSS if else 条件,移动纵向或横向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38847498/

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