2013-08-30 230 views
-1

我的頁腳不想粘在頁面的底部。我是新來的HTML,我不能讓它下降。將頁腳粘貼到頁面底部

這裏是我的代碼:

<div class="footer"> 
    Copyright &copy; 2013. All rights reserved 
</div> 
+0

什麼CSS在你的頁腳類? – j08691

+0

沒有CSS。 – user2277747

+0

此問題有重複。 [使頁腳正確粘貼到頁面底部](http://stackoverflow.com/q/3443606/1371589) – jhedm

回答

1

簡單的固定解決方案:

.footer { 
    position: fixed; 
    bottom: 0; 
} 

簡易絕對解決方法:

.footer { 
    position: absolute; 
    bottom: 0; 
} 

票友置頂頁腳:

html { 
    position: relative; 
    min-height: 100%; 
} 
body { 
    margin: 0 0 100px; /* bottom = footer height */ 
} 
.footer { 
    position: absolute; 
    left: 0; 
    bottom: 0; 
    height: 100px; 
    width: 100%; 
    background: red; 
} 
相關問題