2
body, html {
height: 100%;
#nav-left {
width: 155px;
min-height: 100%;
background-color: #292a28;
position: absolute;
z-index: 10;
}
我的網頁上時,高度成長(動態),我的DIV高度沒有長大。 page
body, html {
height: 100%;
#nav-left {
width: 155px;
min-height: 100%;
background-color: #292a28;
position: absolute;
z-index: 10;
}
我的網頁上時,高度成長(動態),我的DIV高度沒有長大。 page
試試這個
html, body {
position: relative;
padding: 0;
margin: 0;
height: 100%;
}
#nav-left {
width: 155px;
min-height: 100%;
background-color: #292a28;
position: absolute;
z-index: 10;
}
附加高度#導航左 - 高100% –