答案 0 :(得分:1)
我认为您需要将身体的大小更改为100%。这是一个很好的网站,帮助我弄明白。 http://ryanfait.com/sticky-footer/
他是这样做的:
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -155px;
}
.footer, .push {
height: 155px; /* .push must be the same height as .footer */
}
您还需要将您的页脚放在身体外面才能使用。