I have multiple Div Boxes like this below:
<div class="col-sm-4 col-md-4 col-xs-12 text-center">
<div class="carCard">
<h2 class="text-center">Box 1</h2>
<p>
Conent Here
</p>
</div>
</div>
However, if the content <p>
get big, the boxes in order get missed up, see example: https://jsfiddle.net/3oq8h3vy/2/
You can see Box 1, Box 2, Box 3 and then send row: Box 5, Box 6 and Box 4.
How to fix this?