我有一个垂直和水平居中的主容器和一个要贴在页面底部的页脚:
HTML 代码:
<div id="home-container">content goes here</div>
<div id="footer">footer</div>
代码:
body {
min-height:350px;
}
#home-container {
width: 730px;
height:310px;
position:absolute;
left: 50%;
top: 50%;
margin:-155px 0 0 -365px;
}
#footer {
width:500px;
border:1px solid red;
position:absolute;
left:50%;
bottom:0;
margin-left:-250px;
}
问题是当我调整浏览器的窗口高度时,主容器和页脚相互重叠。有任何想法吗?