0
I’m putting together 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 from 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 %>
If you always have 4 columns you could use a "clear" in the first item of each row. See if any of this helps: http://answall.com/a/16897/70 or even http://answall.com/q/42714/70
– Bacco
Use source code instead of images, depending on image quality, can make it difficult to view source code.
– Julio Borges
Every time this question goes to the front of the queue gives me a pain just reading the title. Column displacement must hurt like hell.
– Bacco