gpt4 book ai didi

CSS强制子元素适应父元素

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

如何强制子元素适应父元素,即在#content 上显示滚动条?

http://jsfiddle.net/vzaVc/

HTML:

<div id="parent">
<div id="header">
varied-sized header
</div>
<div id="content">
the real content<br>
this can be so long<br>
that it doesn't fit into the parent<br>
so this should get a scroll bar<br>
so that the user can... scroll it down<br>
</div>
</div>​

CSS:

#parent {
background-color: red;
display: inline-block;
width: 200px;
height: 300px;
}
#header {
background-color: yellow;
font-size: 32px;
margin: 20px;
}
#content {
background-color: green;
font-size: 24px;
margin: 20px;
overflow: auto;
}​

编辑:

我可以在不指定#content 高度的情况下离开吗?计算该属性的正确值可能既困难又麻烦(如果其他情况发生变化)。

最佳答案

如果你想让#content有一个滚动条,添加一个CSS height属性和overflow,例如

height: 160px;
overflow-y: scroll;

关于CSS强制子元素适应父元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11298093/

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