【发布时间】:2013-12-13 18:51:20
【问题描述】:
我试图在我的网站上实现粘性页脚,但由于某种原因它不想工作并且它的推送超出了它的需要。我尝试了很多“粘页脚”教程,但总是有一些东西不起作用。
请检查我的小提琴:http://jsfiddle.net/Qx5Fz/1/
html, body {
height: 100%;
}
#content {
min-height: 100%;
}
#main {
overflow:auto;
padding-bottom: 40px;
}
#footer {
position: relative;
margin-top: -40px; /* negative value of footer height */
height: 40px;
clear:both;
}
【问题讨论】: