I need help creating 2 rows of images with 5 images in total:
Image Image
Image Image Image
How can I center the first row properly?
Currently, my layout looks like this:
Image Image
Image Image Image
figure img {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
figure:hover img {
-webkit-transform: scale(1.05);
transform: scale(1.05);
position: relative;
height: auto;
display: block;
z-index: 999;
border: 1px solid #ffffff;
background-color: #ffffff;
}
<table border="0">
<tr>
<td>
<figure style="margin: 0;">
<a target="_blank" href="#"><img src="https://www.wegmans.com/content/dam/wegmans/products/768/56768.jpg" height="100" width="100"></a>
</figure>
</td>
<td>
<figure style="margin:0">
<a target="_blank" href="#"><img src="https://www.wegmans.com/content/dam/wegmans/products/768/56768.jpg" height="100" width="100"></a>
</figure>
</td>
</tr>
<tr>
<td>
<figure style="margin: 0;">
<a target="_blank" href="#"><img src="https://www.wegmans.com/content/dam/wegmans/products/768/56768.jpg" height="100" width="100"></a>
</figure>
</td>
<td>
<figure style="margin:0">
<a target="_blank" href="#"><img src="https://www.wegmans.com/content/dam/wegmans/products/768/56768.jpg" height="100" width="100"></a>
</figure>
</td>
<td>
<figure style="margin: 0">
<a target="_blank" href="#"><img src="https://www.wegmans.com/content/dam/wegmans/products/768/56768.jpg" height="100" width="100"></a>
</figure>
</td>
</tr>
</table>