Bootstrap Grid System new line does not look nice
Recently, I started making an admin page on my site to edit multiple small tables (1-5 entries). They got all displayed on one page, and the tables got nested in a div as follows: <div class="row"> <div class="col-xs-12 col-sm-4 col-md-4"> <!--table 1--> </div> <div class="col-xs-12 col-sm-4 col-md-4"> <!--table 2--> </div> ... </div> I did this with six tables, and this is how it looks like if they have the same amount of records (one table is one black block): When now the first table has one more record, the first table is larger and therefore the last div is wrapped to a third row: What I