我知道这已在其他地方被问过,但我找不到解决方案。我有一个简单的布局。一个容器 div,里面有两个浮动 div。左侧 div 包含导航并具有背景图像。右侧的 div 具有坚实的背景,并且根据每个页面的内容是动态的。我对内容 div 没有任何问题。我的问题是我希望左 div 垂直“拉伸”以匹配内容 div 的高度。发生的事情是左边只是伸展到最小高度值。这是我的CSS:
#containerTemp {
margin-left:auto;
margin-right:auto;
width:1000px;
min-height:100px;
height:auto;
}
#containerNavigation {
width:210px;
float:left;
background-image:url(../images/template/linkbgd.gif);
background-repeat:repeat-y;
min-height:500px;
height:100%;
}
#containerContent {
width:790px;
background:#FFFFFF;
background-repeat:repeat-y;
float:right;
min-height:500px;
height:100%;
}
您可以通过访问此页面查看问题:http: //www.athensfireandrescue.org/?pid=7
我确信这很简单,但我不能指望它。对不起,多余的问题,但我的搜索只是没有找到可行的解决方案。