2

什么 HTML/CSS 用于创建填充浏览器底部并在用户滚动时保持原位的栏?请参阅envato.com了解我在说什么。

4

1 回答 1

2

我以前使用过这种方法,它似乎工作得很好。

http://ryanfait.com/sticky-footer/

* {
    margin: 0;
}
html, body {
    height: 100%;
}
.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -142px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
    height: 142px; /* .push must be the same height as .footer */
}
于 2010-01-13T16:58:36.287 回答