2009-11-18 75 views
0

即使在垂直滾動時,我們是否可以將頁腳固定到窗口的底部?我已經通過一些例子,但那些從來沒有與垂直滾動工作。將頁腳固定到瀏覽器的底部

+0

請參閱http://limpid.nl/lab/css/fixed/footer – sathish 2009-11-18 13:05:14

回答

0

這裏是你的CSS

html, body {height:100%;padding:0;margin:0;} 
#footer {position:absolute;bottom:0;left:0;width:100%;background-color:#f00;} 
#scrollingbody {overflow:auto;height:100%;} 

這裏是你的HTML

<div id="scrollingbody">content goes here</div> 
<div id="footer">here is footer</div> 
+0

position:absolute;將不支持在IE 6瀏覽器 – sathish 2009-11-18 13:23:31

+0

你說CSS屬性位置:絕對不支持在IE6?在IE 6中實際使用它之後,我可以肯定地說它確實是因爲我剛剛測試過它! – Zoidberg 2009-11-18 13:27:05

1

您可以將底部屬性設置爲0。例:

.footer 
{ 
    background-color:#FFFACD; 
    bottom:0; 
    position:fixed; 
    z-index:250px; 
}