作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
如何在添加更多子 DIV 时使父/容器 DIV 增长。
<div id="container">
<div id="child" style="height:100px;">
</div>
<div id="child2" style="height:100px;">
</div>
</div>
最佳答案
你的父 div 不会随着它的内容增长的唯一原因是它的内容是绝对定位的或者正在使用 float ,在前一种情况下你除了用 javascript 调整它的大小之外别无他法,在后一种情况下你可以将以下代码放在 float 元素的末尾:
<br style="clear: both">
假设您的示例中的两个子元素都有一个 float ,代码将如下所示
<div id="container">
<div id="child" style="height:100px;">
** CONTENT GOES HERE **
<br style="clear: both">
</div>
<div id="child2" style="height:100px;">
** CONTENT GOES HERE **
<br style="clear: both">
</div>
</div>
您可以使用任何节点,只要您在其上使用“clear: both”即可(因此 <div style="clear: both"></div>
也可以)。
关于html - 如何让父 div 与它的 child 一起成长?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4697578/
我是一名优秀的程序员,十分优秀!