How can I make a div stretch to the height of its parent using Bootstrap 3.0.2 without using a script? Check out the fiddle linked below. In this example, I want to stretch the blue container to match the height of the 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>