I'm building a code for columnar a list of products.
Each row has 4 columns and jumps to the next row.
But when, for example, the height of the first column is greater than the others and I resize the window, the first column of the second row moves forward.
Below is an excerpt of the code. Can anyone help me?
<% Do While not rs.Eof
<div class="col-md-3 col-xs-6" align="center">
<div class="col-lg-12" align="center">
<img src="images/produto/nome.jpg" class="img-rounded img-responsive">
</div>
<div class="col-lg-12 size-font-10-normal" align="center">Titulo</div>
<div class="col-lg-12 size-font-09-bold" align="center">Valor</div>
</div>
<% rs.MoveNext
Loop %>