Seeking assistance with utilizing flexbox.
Trying to equalize the height of the column containing item 2 and 3 with that of Column 1.
Preferably, both item 2 and 3 should expand to occupy the available space. Have tried various solutions without success.
Below is the HTML code:
<div class="container">
<div class="row yellow">
<div class="col-sm-6 pink">
<h1>Item 1</h1>
...
</div>
<div class="col-sm-6">
<div class="row">
<div class="col-sm-12 cyan">
<h1>Item 2</h1>
...
</div>
<div class="col-sm-12 green">
<h1>Item 3</h1>
...
</div>
</div>
</div>
</div>
Utilizing Bootstrap 3 and flexbox Grid for its flexbox features.
Flexbox Grid