2016-09-29 183 views
-1

我現在試過了一切。我的頁腳繼續留在頁面中間或固定在屏幕的底部。無論我在網站上放置多少內容,我都需要它在頁面的底部。頁腳將不會在頁面底部

#footer { 
 
    position: absolute; 
 
    right: 0; 
 
    bottom: 0; 
 
    left: 0; 
 
    width: 100%; 
 
    height: 60px; 
 
    background: #000000; 
 
}
<div id="footer"> 
 

 
</div>

回答

0

使用底:汽車,而不是 '0'

#footer { 
 
position: absolute; 
 
right: 0; 
 
bottom: auto; 
 
left: 0; 
 
width:100%; 
 
height:60px; 
 
background:#000000; 
 
}
content <br>Content<br>Content 
 
<div id="footer"> 
 

 
</div>

+0

仍然在頁面中間。 – Munksgaard

+0

如果你只是想要頁腳跟隨你的內容,然後刪除所有的屬性'位置'''''''''''''底部' –

+0

它沒有任何作用。 – Munksgaard