gpt4 book ai didi

jquery - 是否可以设置最小视口(viewport)高度?

转载 作者:行者123 更新时间:2023-11-28 15:30:02 24 4
gpt4 key购买 nike

我有一个页面,其总体布局如下:

header {height: 10vh; width:100%; background-color:black;}
#wrapper {height:70vh; width: 100%; background-color: white; }
footer {height:20vh; width: 100%; background-color: grey;}
<header>
</header>
<div id="wrapper">
image
</div>
<footer>
</footer>

这在移动设备上看起来很好,直到屏幕方向更改为水平。是否可以设置最小视口(viewport)高度?我正在使用

<meta name="viewport" content="width=device-width, initial-scale=1">

并尝试了这个

<meta name="viewport" content="width=device-width, initial-scale=1, min-height=500">

运气不好。是否有用于此的 CSS 或 jQuery 方法?

最佳答案

您可以为 max-height 使用媒体查询,也可以结合 orientation: landscape 并在其中为这些元素设置单独的高度(即必要的最小高度),例如

@media screen and (max-height: 600px) {
header {height: 100px;}
#wrapper {height:700px; }
footer {height:200px;}
}

关于jquery - 是否可以设置最小视口(viewport)高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44808570/

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