My problem is to dynamically generate columns of type "col-md-4" but if one exceeds the content as seen in the image causes the following columns to skip that space.
What I'm looking for is that it respects the space of the div above and does not move to the right. Edito: I add the structure of the div's inside each one is where I add the content.
<div class="row">
<div class="clearfix col-md-4">
<!--contenido del div -->
</div>
<div class="clearfix col-md-4">
<!--contenido del div -->
</div>
<div class="clearfix col-md-4">
<!--contenido del div -->
</div>
<div class="clearfix col-md-4">
<!--contenido del div -->
</div>
</div>