gpt4 book ai didi

html - 如何让div占据剩余高度?

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

我有这个问题,我有两个 div:

<div style="width:100%; height:50px;" id="div1"></div>
<div style="width:100%;" id="div2"></div>

如何让div2占据页面剩余高度?

最佳答案

使用绝对定位:

#div1{
width: 100%;
height: 50px;
background-color:red;/*Development Only*/
}
#div2{
width: 100%;
position: absolute;
top: 50px;
bottom: 0;
background-color:blue;/*Development Only*/
}
<div id="div1"></div>
<div id="div2"></div>

关于html - 如何让div占据剩余高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7198282/

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