内部div在高度为auto的容器内高度为100%

时间:2013-01-27 14:29:23

标签: css css-float height positioning

我正在努力让div完全扩展到容器的高度。

标记:

<div class="container">
  <div class="innerOne inner"></div>
  <div class="innerTwo inner"></div>
</div>

在不同的视口.innerTwo的内容比.innerOne的内容高,但我希望它的背景与.innerTwo的大小相同

样式:

.container {
   width: 100%;
   height: auto;
   background-color: yellow;   

   /* clearfix */
   *zoom: 1;
   &:before,
   &:after {
     display: table;
     content: "";
     line-height: 0;
   }
   &:after {
    clear: both;
   }
}

.inner {
   float: left;
   width: 50%;
   height: 100%;
   background-color: red;
}

但高度不会匹配。我知道可以通过给容器设置一个高度来完成它,但我不想这样做,因为它是一个响应式站点。这可能吗?我宁愿不使用JS。

3 个答案:

答案 0 :(得分:14)

您可以使用 display:table-cell 属性。写得像这样:

.container{
    width:100%;
    border:1px solid red;
    display:table;
}
.inner{
    display:table-cell;
    background:green;
    width:50%;
}
.innerTwo{
    background:blue
}

选中此http://jsfiddle.net/XXHTC/

答案 1 :(得分:0)

本文讨论响应式媒体中的宽高比和大小问题。它可能不是您特定问题的答案,但讨论使用百分比填充的部分有时帮助了我。 http://css-tricks.com/rundown-of-handling-flexible-media/

答案 2 :(得分:0)

您可以在此处找到所需的解决方案:http://matthewjamestaylor.com/blog/equal-height-columns-cross-browser-css-no-hacks

祝你好运:)