Please note I will not accept any answers that prevent bootstrap from being usable
The scenario is as follows: I have a parent element (div) with two child elements (also divs) nested inside. I would like the children to be able to fill the height of the parent regardless of the content that is in side the children. On top if this, if the parent element is not tall enough to contain the child content, I would like the parent element to stretch to the necessary height to display the content within the children.
A non-working example is located here: https://jsfiddle.net/uqh76pku/2/
<div class="row content">
<div class="col-xs-3 section">text content goes here</div>
<div class="col-xs-9 section">text content goes here</div>
</div>
Many of the answers I have found (listed below) provide information which simply does not work. I have tried the following list of answers.
How to stretch div height to fill parent div - CSS
CSS - Expand child DIV height to parent's height
Stretch Child DIV to Height of Parent (Without hardcoding height)