我很难为页脚文本提供一个简单的 CSS 片段。页脚文本必须始终位于页面末尾和屏幕末尾,无论后面出现什么。
问问题
3476 次
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 回答
-1
使用bottom
属性:
#footer
{
position:absolute;
bottom:2px;
}
于 2009-10-14T11:31:31.590 回答