2

我很难为页脚文本提供一个简单的 CSS 片段。页脚文本必须始终位于页面末尾屏幕末尾,无论后面出现什么。

4

3 回答 3

0
* {
    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 */
}

/*

Sticky Footer by Ryan Fait
http://ryanfait.com/

*/
于 2009-10-14T11:10:15.903 回答
0

对于一个你可以挑选的工作示例,我之前为我们的客户做了同样的事情:

下推页面- 固定位置页面

于 2009-10-14T11:56:21.187 回答
-1

使用bottom属性:

#footer
{
    position:absolute;
    bottom:2px;
}
于 2009-10-14T11:31:31.590 回答