Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个主包装器<div>(id #main),我想在将文本副本添加到内容时增长<div>,但由于某种原因,主 div 不会增长以容纳其中的其他<div>元素,更不用说添加到内容 div 的任何内容.
<div>
#main
jsFiddle
有人可以帮我吗?
您可以在这里尝试一些事情:将父 div 浮动到左侧。如果这不起作用,则使用overflow: hidden;父 div 中的属性。clear: both;在其容器中添加一个子元素。
overflow: hidden;
clear: both;
如果这不起作用,请尝试#main{height:auto}. 您可能需要将相同的属性添加到 Content DIV。
#main{height:auto}