Using Bootstrap 3.0.2. Want to stretch a div to the height of it's parent div. Not interested to set with a script. Is there any way to do so? Please see the fiddle. Here I want to stretch the blue container to the height of parent green container.
<div class="row border-green">
<div class="col-xs-6">
<div class="border-red">
aaaa<br>
bbbb<br>
cccc
</div>
<div class="border-red">
dddd
</div>
</div>
<div class="col-xs-6 border-blue">
eeee<br>
ffff<br>
</div>
</div>