我有这些嵌套的div,我需要主容器扩展(在高度),以适应内部的div

    <!-- head -->
    ...
    <!-- /head -->

    <body class="main">
      <div id="container">
        <div id="header">
          <!--series of divs in here, graphic banner etc. -->
        </div>

    <div id="main_content"> <!-- this DIV _should_ stretch to accommodate inner divs -->
      <div id="items_list" class="items_list ui-sortable">
        <div id="item_35" class="item_details">
        </div>
        <div id="item_36" class="item_details">
        </div>        
        <div id="item_37" class="item_details">
        </div>
        <!-- this list of DIVs "item_xx" goes on for a while
             each one representing a photo with name, caption etcetc -->
      </div>
    </div>
    <br class="clear"/>

    <div id="footer">
    </div>
  </body>
</html>

CSS是这样的:

* {
    padding: 0;
    margin: 0;
}

.main {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: #4c5462;
    margin: 0; 
    padding: 0;
    text-align: center; 
    color: #000000;
}
.main #container {
    height: auto;
    width: 46em;
    background: #4c5462;
    margin: 0 auto; 
    border: 0px solid #000000;
    text-align: left;       
}

.main #main_content {
    padding: 5px;
    margin: 0px;
}
#items_list {
    width: 400px;
    float: left;
}

.items_list {
    width: 400px;
    float: left;
}
.item_details {
    margin-top: 3px;
    margin-bottom: 3px;
    padding: 3px;
    float: left;
    border-bottom: 0.5px solid blue;
}

我的问题是,#main_content没有拉伸以适应所有的内部div,其结果是它们一直在与背景相反。

考虑到上述情况,我该如何解决这个问题?


当前回答

浮动元素不占用父元素内部的空间,顾名思义,它们是浮动的!因此,如果显式地没有为其子元素浮动的元素提供高度,则父元素将出现缩小并似乎不接受子元素的维度,如果其给定overflow:hidden;它的子节点可能不会出现在屏幕上。有很多方法可以解决这个问题:

在被浮动元素下面插入另一个元素,使用clear:both;财产,或使用清楚:两者;On:被浮动元素的后面。 使用显示:inline-block;或者用flex box代替float。

其他回答

你需要在关闭#main_content div之前强制执行clear:both。我可能会移动<br class="clear" />;进入#main_content div并设置CSS为:

.clear { clear: both; }

更新:这个问题仍然有相当多的流量,所以我想用一个现代的替代方案来更新答案,在CSS3中使用一个新的布局模式,称为Flexible boxes或Flexbox:

身体{ 保证金:0; } .flex-container { 显示:flex; flex-direction:列; 最小高度:100 vh; } 标题{ background - color: # 3 f51b5; 颜色:# fff; } 部分。{内容 flex: 1; } 页脚{ background - color: # FFC107; 颜色:# 333; } < div class = " flex-container " > <标题> <标题> 头 < / h1 > 头> < / <节课= "内容" > 内容 < / >节 <页脚> < h4 > 页脚 < / h4 > > < /页脚 < / div >

大多数现代浏览器目前都支持Flexbox和viewport单元,但如果您必须保持对旧浏览器的支持,请确保检查特定浏览器版本的兼容性。

非常简单的方法

在父DIV上:

高度:100%;

这对我每次都有效

我尝试了上面列出的每一条建议,但没有一条奏效。然而,“display: table”对我来说很管用。

我试过身高:适合的内容,它对我很有效

向#main_content div添加一个float属性——它将展开以包含它的浮动内容