gpt4 book ai didi

html - 拉伸(stretch)容器高度以适应屏幕

转载 作者:行者123 更新时间:2023-11-28 15:20:09 34 4
gpt4 key购买 nike

我有下面的 HTML,我希望容器 div 拉伸(stretch)到窗口的整个高度。这对 wine 有效,但是当您移除容器内的两个蓝色 div 时会发生什么?容器延伸到其中蓝色 div 的底部,但不会延伸到窗口的底部。解决方案?

jsfiddle:https://jsfiddle.net/xnt014a8/

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>

<style>
body, html {
min-height: 100%;
padding: 0;
margin: 0;
}

#container {
height: 100%;
background: coral;
padding: 0;
margin: 0;
width: 63.4%;
margin-left: 36.6%;
min-height: 100%;
}
</style>
</head>
<body>
<div id="container">
<div style="height: 255px; width: 200px; margin-bottom: 10px; background: blue"></div>
<div style="height: 255px; width: 200px; margin-bottom: 10px; background: blue"></div>
<div style="height: 255px; width: 200px; margin-bottom: 10px; background: blue"></div>
</div>
</body>
</html>

最佳答案

如果您想坚持使用 CSS,解决方案是在样式中使用“%”的“vh”代替。vh 表示视口(viewport)高度(1vp = 1% 的视口(viewport),2vh = 2% 的视口(viewport)....)

所以

#container {
height: 100vh;
min-height: 100vh;
...
}

应该可以解决您的问题。 (适用于所有主流浏览器:http://caniuse.com/#search=vh)

关于html - 拉伸(stretch)容器高度以适应屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36332506/

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