有问题的网站:http: //www.flowersbe.com
所以我没有让页脚粘在底部的问题,我的问题是我的容器上有一个上边距,它将页脚向下推到浏览器底部之外 25px,这在联系页面上最为明显上述网站。我想将 25px 空间保留在顶部,但我仍然希望页脚完全可见......下面是容器和页脚的 css......关于如何解决这个问题的任何想法?
html,
body {
height: 100%;
}
#container {
width: 960px;
min-height: 100%;
height: auto !important;
height: 100%;
margin: 25px auto -50px;
background-color: #fff;
}
footer {
clear: both;
width: 960px;
height: 35px;
margin: 0 auto;
padding: 15px 0 0 0;
background-color: #ffebeb;
text-align: center;
}
.push {
height: 50px;
}