2013-12-07 103 views

回答

0

在你的style.css(98行),你必須#sidebar{padding-bottom: 5000px;}。 只需刪除它。

0

從你的CSS刪除以下行側邊欄:

padding-bottom: 5000px; 

這意味着你應該用下面的結束:

#sidebar { 
    background-color: #333333; 
    width:225px; 
    text-align: center; 
    float: left; 
    color:#999999; 
    font-size:12px; 
    line-height: 15px; 
    padding-bottom:30px; 
    /* margin-bottom: -5000px; */ 
    /* padding-bottom: 5000px; */ 


    right: 0px; 
} 

考慮到這一點,我assuiming是你所希望這裏做的是將左欄一直延伸到頁面的底部。我相信這個(Full height sidebar and full height content, fluid layout)應該有所幫助。祝你好運!

+0

謝謝你提請!這是超級有用的,並解決了這個問題。非常感謝! – user3078248