所以这是一张图片:
问题是我在容器div中有2个div。容器div在高度上扩展为nessiscary,2个内部div也是如此。右边的div有一个边框左边...但是如果它是空的,它将不会填满整个高度....我该怎么做?
答案 0 :(得分:5)
您所谈论的问题被称为“虚假列”,并且在过去几年中得到了很好的报道和描述:) http://www.alistapart.com/articles/fauxcolumns/
有几种解决方案:
最后一个解决方案非常好,所以如果你使用的是jQuery,那么就可以实现:
var max=0;
$('#container').children().each(function(){
if($(this).height()>max) max = $(this).height();
});
$('#container').children().each(function(){
$(this).height(max);
});
脚本遍历容器的所有子节点并找到最高元素。然后它再次迭代并为每个人设置最大高度。
答案 1 :(得分:2)
<强> HTML 强>
<div class="wrapper">
<div class="child_1">First Div content goes here</div>
<div class="child_2">Second Div content goes here</div>
</div>
<强> CSS 强>
.wrapper {
width: 960px;
overflow: hidden;
margin: 0px auto;
}
.child_1, .child_2 {
padding-bottom: 9999em;
margin-bottom: -9999em;
width: 50%;
float: left;
}
.child_1 {
background: #f00;
}
.child_2 {
background: #0f0;
}
答案 2 :(得分:0)
尝试向左侧div添加border-right。在容器div中添加一个带有clear类的div。然后在css中添加: .clear {明确:两者;}
答案 3 :(得分:0)
这就是你要找的......
http://matthewjamestaylor.com/blog/equal-height-columns-cross-browser-css-no-hacks
此外,我假设您正在使用float
,所以我强烈建议您阅读:
http://coding.smashingmagazine.com/2007/05/01/css-float-theory-things-you-should-know/
...记得清理你的花车!