我已经查看了此处发布的一些问题,但是对于如此简单的任务来说,一切似乎都过于复杂了?我只想要一个无论页面垂直多长时间都固定在屏幕底部的页脚。一切正常,除了我不能让页脚居中,它总是左对齐..?谢谢! http://jsfiddle.net/n4xxj/
<body>
<div id="content"></div>
<div id="footer"></div>
</body>
div {
width: 960px;
margin: auto;
}
#content {
background-color: beige;
border: 1px solid;
height: 1200px;
margin-top: 100px;
margin-bottom: 150px;
}
#footer {
background-color: lightgray;
border: solid 1px;
height: 100px;
position: fixed;
bottom: 0px;
}