我正在努力让一个 div 完全扩展到它的容器高度。
标记:
<div class="container">
<div class="innerOne inner"></div>
<div class="innerTwo inner"></div>
</div>
在不同视口.innerTwo
的内容比 's 的高,.innerOne
但我希望它的背景与.innerTwo
's 的大小相同
款式:
.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。