动态高度页面但div高度不起作用

时间:2015-10-19 07:31:38

标签: html css

body, html {
height: 100%;

}

#nav-left {
width: 155px;
min-height: 100%;
background-color: #292a28;
position: absolute;
z-index: 10;

}

在我的页面上,身高增长(动态),我在div上的高度没有成长。page

1 个答案:

答案 0 :(得分:1)

试试这个

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;
}

工作示例:http://liveweave.com/9gb8mF