In my Bootstrap 3 layout, at the lg/md boundry, I have 4 columns as sush :
column 1 column 2 column 3 column 4
------ -------- -------- ---------
0 1 4 8
2 5 9
3 6
7
(the height of each column is not fixed, it depends of the page)
At the xs/sm boundry, I need it to change to:
col 1 col2
------- --------
0 4
1 5
2 6
3 7
8
9
Any suggestions? I'm trying with pull and push, but without success. I'm stuck with this result
col 1
-------
0
1
2
3 col2
-------
4
5
6
7
8
9
<!-- Col 1 -->
<div class="col-md-3 col-md-pull-0 col-sm-6">
0
</div>
<!-- Col 2 -->
<div class="col-md-3 col-md-pull-0 col-sm-6 col-sm-pull-6">
1<br/>2<br/>3
</div>
<!-- Col 3 -->
<div class="col-md-3 col-md-pull-0 col-sm-6">
4<br/>5<br/>6<br/>7
</div>
<!-- Col 4 -->
<div class="col-md-3 col-md-push-0 col-sm-6 col-sm-push-6">
8<br/>9
</div>