I'm having trouble making some kind of feaux-columns effect through Bootstrap. In theory I thought it would be relatively easy for me to inherit the height of another column inside the same row - however in practice it appears not to be so easy.
<div class="row slideshow">
<div class="col-md-3 col-1">
col 1 contents
col 1 contents<br />
col 1 contents<br />
col 1 contents<br />
col 1 contents<br />
col 1 contents<br />
col 1 contents<br />
</div>
<div class="col-md-6 col-2">
<div class="col-md-10">
<div class="slider-caption">
col 2 contents<br />
col 2 contents<br />
</div>
</div>
</div>
<div class="col-md-3 col-3">
col 3 contents
</div>
</div>
In the jsfiddle I have no styling as such, apart from determined background-colors in order to visualize the height. But the question really is, how can I make col-3 inherit the height of the highest container within this row (currently – because of content – col-1)? I tried my way with defining it's height to be 100%, because I thought that would be 100% of the parent row. Appears it was not.
Any tips is much appreciated