1
我已經讓圖片少說話了。希望你會明白。 問題是,在其他具有固定高度的DIV下拉伸100%高度的DIV不能正確拉伸。伸展高度DIV在固定高度的另一個DIV下
這裏的例子一起工作:jsfiddle
CSS:
.controlling-div {
width: 200px;
height: 200px;
}
.stretching-container-div {
width: 100%;
height: 100%;
}
.fixed-height-div {
height: 40px;
background-color: #ff8811;
border-radius: 20px;
}
.stretching-height-div {
height: 100%;
background-color: #ff2266;
border-radius: 20px;
}
HTML:
<div class="controlling-div"><!-- width & height can be changed -->
<div class="stretching-container-div"><!-- 100%-container -->
<div class="fixed-height-div"></div><!-- fixed height -->
<div class="stretching-height-div"></div><!-- height 100% - fixed height -->
</div>
</div>
謝謝!