I'm adding different sized divs dynamically to a fluid container. Container already put them correctly into two columns one to the left then one to the right and so on. Unfortunately I cannot stick them together in the left column if in that row the div on the right side is bigger. I forked a fiddle for this to show what I'd like to achieve:
html:
<div class="container-fluid">
<div class="row-fluid">
<div class="col-xs-6">
1
</div>
<div class="col-xs-6">
2
</div>
<div class="col-xs-6 label-warning">
3
</div>
<div class="col-xs-6">
4<br/>
s<br/>
s<br/>
s<br/>
s<br/>
s
</div>
<div class="col-xs-6 label-success">
5
</div>
<div class="col-xs-6">
6
</div>
</div>
http://jsfiddle.net/aqj48y2y/4/
Now in this I'd like 5 and 6 to show up right under 3 next to the box 4 somehow. In this scenario I didn't use any column so if I put in another div it will show up under the box 5 and if I put another one that will show up under 6 which is correct for me. The question is that can I achieve to put 5 and 6 under 3 so let's say stack them together? Show them like a justified text?
Thanks in advance.