gpt4 book ai didi

css - 如何让页面的下半部分占据剩余高度?

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

我搜索并尝试了很多不同的东西。我有一个可变高度 上半部分,下半部分应该填满剩余空间。一个 JSfiddle:

http://jsfiddle.net/UCJmQ/

CSS:

.top {
background-color: lightblue;
height: 300px;
}
.bottom {
background-color: green;
min-height: 100px;
overflow: hidden;
height: 100%;
}

html, body {
height: 100%;
}

HTML:

<div class="top"></div>
<div class="bottom">

</div>

我现在看到的是绿色页面占据了整个窗口的高度,而不是剩余的高度。我怎样才能让它占据剩余的高度?

最佳答案

http://jsfiddle.net/ph35V/

<div class="wrapper">
<div class="top">
300px
</div>
<div class="bottom">
Remaining height
</div>
</div>

html, body {
height: 100%;
width: 100%;
margin: 0;
}
.wrapper {
display: table;
height: 100%;
width: 100%;
}
.top {
display: table-row;
background: lightblue;
height: 300px;
}
.bottom {
display: table-row;
height: 100%;
background: green;
}

也可以使用 box-sizing: border-boxconflicting absolute positions

关于css - 如何让页面的下半部分占据剩余高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19577173/

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