gpt4 book ai didi

css - 如何使用媒体查询知道视口(viewport)宽度是否大于其高度

转载 作者:技术小花猫 更新时间:2023-10-29 11:28:39 24 4
gpt4 key购买 nike

有没有办法在 css 中执行此操作? @media screen and (min-width < min-height)

我开始编写一个前端库,我希望基于这种情况“响应式”。

最佳答案

检查方向

@media all and (orientation: landscape) {
body:after {
content: "width is greater than height"
}
}

@media all and (orientation: portrait) {
body:after {
content: "height is greater than width"
}
}

关于css - 如何使用媒体查询知道视口(viewport)宽度是否大于其高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31694431/

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