2012-08-01 183 views

回答

0

如果你指的是具有固定的頁腳會始終顯示在底部,你將需要使用固定位置bottom: 0px因此會一直呆在那裏,即使內容未填滿屏幕

#footer_id { 
     position:fixed; 
     bottom:0px; 
     height: "whatever"; 
    } 
+0

我不認爲OP是指這一點。在鏈接的網頁上,頁腳需要保留在所有內容之下。 – irrelephant 2012-08-01 02:29:14

0

是啊,你可以使用粘性頁腳

 <div id="footer"></div> 

#footer 
     { 
     position: relative; 
     margin-top: -50px; /* Give the height of footer as negative margin */ 
     height: 50px; 
     clear:both; 
     } 

此鏈接可以幫助你

http://www.cssstickyfooter.com/using-sticky-footer-code.html

+0

不,我不是在說那個。看,像頁腳是低於內容,所以它總是在底部。但是,當內容較少時,它仍然是內容的底部,而不是屏幕的底部。我希望它在屏幕的底部 – 2012-08-01 13:09:49

+0

它沒有工作。 – 2012-08-01 13:14:12

+0

這只是粘腳頁腳 – Prashobh 2012-08-01 13:24:44