gpt4 book ai didi

css - 如何使元素填充剩余的视口(viewport)高度?

转载 作者:行者123 更新时间:2023-11-28 09:23:17 25 4
gpt4 key购买 nike

我想使用 CSS 网格。我认为是这样的……

html {
height: 100%;
}

body {
min-height: 100%;
display: grid;
grid-template-rows: auto auto [whatever's left of the vh] auto auto;
position: relative;
}

enter image description here

最佳答案

display: flexheight: 100vh 设置视口(viewport)并添加到最后一个元素 flex 增长:1

.viewportDiv {
display: flex;
flex-direction: column;
height: 100vh;
}
.div1{
background-color: yellow;
height: 100px;
}
.remainingDiv{
background-color: red;
flex-grow: 1;
}
<div class="viewportDiv">
<div class="div1"></div>
<div class="remainingDiv"></div>
</div>

关于css - 如何使元素填充剩余的视口(viewport)高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50043803/

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