我似乎无法弄清楚这一点。我有一个页脚,无论容器的高度和屏幕大小如何,我都想在页面底部显示。似乎在一些较大的屏幕上,背景一直滚动到页面底部,页脚在中间,在普通的 13 英寸 17 英寸屏幕上没问题。
CSS:
#container {
background-color: #ffffff;
min-height: 320px;
margin: 100px auto;
width: 960px;
max-width: 100%;
}
#footer {
background-color: #FFFFFF;
width: 100%;
height: 50px;
position:absolute;
margin-top: 140px;
}