我似乎无法自动设置 div 的高度。
尽管设置了最小高度和
height:auto
您需要清除浮动或设置overflow: auto
为父容器:
#Mid_Container {
width:1048px;
height:auto;
min-height:1100px;
margin:0 auto;
margin-top:15px;
padding:0;
position:relative;
border:1px solid #a9a9a9;
background-color:#f7f7f7;
overflow: auto; /* cause this block to enclose floated child elements */
}
修改后的 jsfiddle:http: //jsfiddle.net/audetwebdesign/JRd9z/1/