2012-01-04 43 views
1

我需要將帶文本的div鎖定到瀏覽器窗口的底部。將文本鎖定到瀏覽器HTML/CSS底部

基本上需要創建一個頁腳欄的瀏覽器中正常滾動,但總是在瀏覽器窗口的確切底部停留

在此先感謝任何人誰幫助我!

回答

9

可以使用固定定位:

#bottom-bar { 
    bottom: 0; 
    left: 0; 
    position: fixed; 
    right: 0; 
    text-align: center; 
} 

例如。 Here's a demo.