我试图在父DIV中强制子DIV达到100%高度。
父div包含z-index处的图像:1
子div是z-index:9999
我可以让孩子DIV强制100%的身高。
#protect_wrap { width: 100%;
float: left;
background: #FFFFFF;
margin-top:0px;
text-align: center;
height: 100%;}
#protect_wrap img { z-index:1;}
#protect_col1 { width:200px;
margin: 0 auto;
background: yellow;
z-index:999;
position:relative;
min-height: 100%;}
img.responsive-fill { width: 100%;
float: left;
height: auto;}
<div id="protect_wrap">
<img src="img/protect.jpg" class="responsive-fill">
<div id="protect_col1"></div>
</div>
答案 0 :(得分:0)
您可以将#protect_col1
位置更改为绝对位置并将其设置为父级#protect_wrap
为亲,孩子将遵循父级身高&amp;宽度。
答案 1 :(得分:0)
min-height
与height
不同。如果父级在min-height: 100%
中有一些值,则您只能min-height
。您可以将height
用于子div吗?
答案 2 :(得分:0)
你有这些改变吗?
#protect_wrap {
position:relative;
.......
}
#protect_col1 {
..........
position:absolute;
}