I usually work with the bootstrap columns and grids, but just today i tried to do something quite different and realised I wasn't so good with bootstrap
i'm trying to achieve a column like in the picture below one full height by the left and 2 half height by the right
<div class="container-fluid col-md-12">
<div class="col-md-6">
</div>
<div class="col-md-6">
</div>
</div>
so i have something like in the code above, we all know that gives us two equal height and width columns side by side, but how can i manipulate this to give what is desired in the image?
NB: I'm going to put images in all three columns
