2011-03-29 93 views
1

這裏是我的地盤 http://iadprint.com/about格設置爲100%不會工作

我試圖使菜單標籤和colright div來有100%的高度,堅持頁腳DIV向下推至底部。但無論我嘗試什麼都行不通。我已經嘗試驗證HTML,但只有3個錯誤存在,這不是重要的修復。我究竟做錯了什麼?

回答

0

我對這種情況的,你想一個頁腳總是出現在窗口的底部固定佈局的粉絲:

header 
{ 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 130px; 
} 

nav 
{ 
    width: 960px; 
    margin: 0 auto; 
} 

article 
{ 
    top: 130px; 
    bottom: 120px; 
    left: 0; 
    width: 100%; 
    position: fixed; 
    overflow: auto; 
} 

footer 
{ 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 120px; 
}