0
好的,這裏是問題:Div向下延伸頁面
我有一個左側的菜單,將不正確的頁面大小。如果內容不必滾動頁腳應位於底部,菜單div應向下延伸以觸摸頁腳。我嘗試了粘腳步技巧或者叫它......但是沒有菜單的運氣。
這裏是我的CSS:
html, body {
margin: 0;
padding: 0;
height: 100%;
font-family: Arial, Helvetica, sans-serif;
background: #999966 url(bgbottom.png);
background-attachment: fixed;
background-position: bottom;
background-repeat: repeat-x;
}
a {
color: #29211D;
}
h2 {
font-size: 26px;
font-weight: normal;
}
.head {
background-image: url(bg.jpg);
width: 100%;
border-bottom: 4px solid #29211D;
overflow: hidden;
height: 185px;
}
.nav {
background-color: #29211D;
width: 150px;
color: white;
padding: 10px;
height: auto !important;
min-height: 100%;
font-size: 14px;
float: left;
}
.content {
font-size: 14px;
width: 80%;
float: left;
padding-left: 10px;
padding-right: 10px;
height: auto !important;
min-height: 70%;
background-color: #FFF;
border: 2px #666 solid;
margin-left: 2%;
margin-top: 1%;
}
.footer {
background-image: url(bg.jpg);
border-top: #29211D solid 3px;
border-bottom: #29211D solid 3px;
text-align: center;
font-size: 12px;
padding-top: 3px;
padding-bottom: 3px;
}
這裏是網站:http://www.pomaceaproject.org/dev/test.asp
其實,我想知道如果做一個--bannersize px保證金會解決這個...? – Bri 2011-01-11 21:54:43
更新:這樣做沒有工作... – Bri 2011-01-11 21:58:32