gpt4 book ai didi

css - 高度 : 100% of remaining space in element with fixed height

转载 作者:太空宇宙 更新时间:2023-11-03 17:35:51 24 4
gpt4 key购买 nike

我已经使用固定高度和 overflow hidden 来绝对定位 div。我想放置一个列表,因此高度应为剩余高度的 100%。我想用纯 CSS 来做到这一点。这可能吗?

CODEPEN EXAMPLE

HTML

<div class="parent">
<ul>
<li>foo</li>
<li>bar</li>
// ...
</ul>
</div>

CSS

.parent {
position: absolute;
width: 50px;
height: 50px;
overflow: hidden;
background: red;
}

.parent ul{
background: green;
}

这是一张简单的图片,显示了剩余高度的 100% 的含义。
enter image description here

最佳答案

你想要它做什么?如果你想让它滚动然后试试这个

.parent {
position: absolute;
width: 100px;
height: 150px;
overflow: scroll;
background: red;
}
.parent ul {
background: green;
}

关于css - 高度 : 100% of remaining space in element with fixed height,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29782555/

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