There are random spaces that appear between each of the images. I wish to have them stick together but i cannot get how to do it, whatever i do...
Html:
<div class="nav">
<a href="enconstruction.php"><img src="images/barre3/Environnement Gris.png" class="img1"></a>
<a href="inter.php"><img src="images/barre3/Services publics gris.png" class="img2"></a>
<a href="enconstruction.php"><img src="images/barre3/droits syndicaux gris.png" class="img3"></a>
<a href="mob.php"><img src="images/barre3/mobilisation Gris.png" class="img4"></a>
<a href="index.php"><img src="images/barre3/Home gris.png" class="img5"></a>
And the Css:
.nav
{
position:fixed;
bottom:-4px;
width:auto;
height:150px;
margin:0 auto;
z-index:5;
}
.img1
{
position:relative;
width:180px;
height:auto;
}
.img2
{
position:relative;
width:212px;
height:auto;
}
.img3
{
position:relative;
width:245px;
height:auto;
}
.img4
{
position:relative;
width:218px;
height:auto;
}
.img5
{
position:relative;
width:165px;
height:auto;
}