I have this page http://www.tripleagent.co.uk/index2.html (will change to index at a certain point) My problem is that I see white spaces between images. It appears only on Safari for windows (Safari 5.1.7) and Android (4.0) mobiles, for all others OS it works perfectly right (I don't care about ie8 and below). There is a solution of deleting the spaces in the html ... but it becomes unreadable. I would love to have it in a readable format like that...
<figure>
<a href="projects.html"><img src="images/squares/mosaics0001.jpg"></a>
<a href="projects.html"><img src="images/squares/mosaics0002.jpg"></a>
<a href="projects.html"><img src="images/squares/mosaics0003.jpg"></a>
<a href="projects.html"><img src="images/squares/mosaics0004.jpg"></a>
<a href="projects.html"><img src="images/squares/mosaics0006.jpg"></a>
<a href="projects.html"><img src="images/squares/mosaics0061.jpg"></a>
<a href="projects.html"><img src="images/squares/mosaics0062.jpg"></a>
<a href="projects.html"><img class="gif" src="images/squares/animgif/mosaic1.gif"></a>
<a href="projects.html"><img src="images/squares/mosaics0008.jpg"></a>
<a href="projects.html"><img src="images/squares/mosaics0009.jpg"></a>
<a href="projects.html"><img src="images/squares/mosaics0010.jpg"></a>
<a href="projects.html"><img src="images/squares/mosaics0005.jpg"></a>
<a href="projects.html"><img src="images/squares/mosaics0012.jpg"></a>
<ul class=nav><a href="projects2.html">projects</a></ul>
<a href="projects.html"><img class="gif" src="images/squares/animgif/mosaic2.gif"></a>
<a href="projects.html"><img src="images/squares/mosaics0015.jpg" ></a>
</figure>
I tried also the 0 size font and wordspacing tricks but they don't work
figure
{
background: rgb(0,0,0);
width : 100%;
max-width: 800px;
display: inline-block;
font-size: 0;
text-decoration:none;
word-spacing: -.43em;
}
I tried the <li></li>
to eliminate the whitespace but couldn't make it to tile in the middle as shown in that page.
http://www.tripleagent.co.uk/index.html
I am really new to all this and I was wandering if I am missing something really basic.