我無法在頁面底部粘上頁腳。我讀了幾十個教程,仍然有問題。在內容覆蓋整個窗口的頁面中,頁腳粘貼在底部沒有問題。但在沒有大量內容的頁面中,頁腳位於頁面中間。頁腳位於短頁的中間
<html><body>
text here text here
<footer id="footer">
Im in the footer and bottom of the page!
</footer>
</body></html>
body {
background: url('/static/img/bg.png');
min-width: 1300px;
height: 100%;
}
footer {
clear: both;
padding-top:20px;
padding-bottom:20px;
background-color:#222;
margin-top: 15px;
color: white;
text-align: center;
}
我試圖在頁腳中添加position:absolute
或position:fixed
和bottom:0px
,但隨後的結果是最差的。頁腳後有一個空格。
我很喜歡這一個由Stuart尼科爾斯:http://www.cssplay.co .uk/layouts/basics2.html –