我有这些嵌套的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,其结果是它们一直在与背景相反。

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


当前回答

你需要在关闭#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单元,但如果您必须保持对旧浏览器的支持,请确保检查特定浏览器版本的兼容性。

其他回答

#clear_div{clear:both;

在内部div的div标签后添加这个新的下面的div

<div id="clear_div"></div>

http://www.w3schools.com/cssref/pr_class_clear.asp:获取更多信息

你需要在关闭#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单元,但如果您必须保持对旧浏览器的支持,请确保检查特定浏览器版本的兼容性。

你可以使用CSS网格布局。目前支持范围相当广:在caniuse上检查它。

下面是jsfiddle的示例。还有大量文本的例子。

HTML代码:

<div class="container">
  <div class="header">
   Header
  </div>
  <div class="content">
   Content
  </div>
  <div class="footer">
   Footer
  </div>
</div>

CSS代码:

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

.container {
  width: 100%;
  height: 100%;

  display: grid;
  grid-template-rows: 100px auto 150px;
  grid-template-columns: auto;
}
// style stuff

你试过传统的方法吗? 给出主容器高度:auto

#container{height:auto}

我用过这个方法,大部分时间都很有效。

作为一种替代方法,你也可以尝试这种方法,在某些情况下可能是有用的

display:table;

js小提琴