His is what I am looking to achieve:
+-----------+-----------+-----------+
| item 1 | itme 2 | item 3 |
| .col-md-4 | .col-md-4 | .col-md-4 |
| | +-----------+
+-----------+ | item 6 |
| | | .col-md-4 |
| item 4 +-----------+ |
| .col-md-4 | .col-md-4 | |
| | item 5 +-----------+
+-----------+ |
| |
+-----------+
How would I be able to make this happen using css? I don't want to columns to appear on the next line to the bottom of the heightest .col-md-4 div on the previous row.
I need the divs to fill up the spaces so that they stick to each other without leaving spaces in between each row.
Something like this but that scales properly on different devices: http://codepen.io/desandro/pen/mIkhq
Hopefully this is clear enough.