我有一些问题,或者我可能不知道如何做到这一点:
我现在拥有的
我有一个 Main div ,在这个 div 下我有两个 div 。一个是蓝色的,另一个是灰色的。Main div 有 min-height , Gray div 有很多 Content in it 。蓝色内容的内容较少。
我想要的是
如果灰色 div 高度增加,蓝色 div 高度也随之增加,这是否可能。意味着两个高度将相同。
现场 Js 小提琴演示:http: //jsfiddle.net/saifrahu28/y6uRx/1/
HTML
<div style="width:200px; min-height:100px; background:#ccc;">
<div class="Gray">
this is Gray <br/>
this is Gray <br/>
this is Gray <br/>
this is Gray <br/>
this is Gray <br/>
this is Gray <br/>
this is Gray <br/>
</div>
<div class="Blue">
this is Blue <br/>
</div>
CSS
.Gray{
width:100px; min-height:200px; background:#333; float:left;
}
.Blue{
width:50px; background:#3b3ff5; float:left;
}