This is probably a really simple fix but has tied me up in knots for a couple of hours now... I was hoping someone may be able to help,
I just want to make the four images each have a width of 25% and fit 100% of the width of the page. However I get this white gap on the right of the images and can't get seem to get all four to fit across the page.
Any ideas at all? Thanks in advance.
CSS:
body {
padding: 0px;
margin: 0px;
}
.thumbar {}
.thumbnails {
width: 25%;
height: auto;
background: white;
min-width: 300px;
}
HTML:
<div class="thumbar">
<img class="thumbnails " <img src="images/02.jpg">
<img class="thumbnails " <img src="images/02.jpg">
<img class="thumbnails " <img src="images/02.jpg">
<img class="thumbnails " <img src="images/02.jpg">
<img class="thumbnails " <img src="images/02.jpg">
</div>