How to show data from database in grid/thumbnails like this Or something like this jsFiddle. I am using spring/jsp technologies. Right now i am showing it in a table like this.
In JSP
<table class="pdtTable" border="1" cellpadding="0" cellspacing="0" align="center">
<tr>
<th>Product Name</th>
</tr>
<c:forEach items="${productList}" var="product" >
<tr>
<td><a href="details${product.id}"> ${product.productName}</a></td>
</tr>
</c:forEach>
</table>