I have having some problem or may be I don't Know the Way to Do this :
What I have now
I have a Main Div and Under this div I have Two div . One is Blue and another is Gray . Main Div has min-height and Gray div has many Content in it . Blue Content has less content .
What I want
Is this possible if the Gray div height increase also Blue Div height increase with it . Means both Height will be same .
Live Js fiddle Demo: 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;
}