bonjour
SVP comment publier 3 images cote à cote et aucun d'espace entre les images

je fais ça :

Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
<table>
     <tr>
         <td id="img1"></td>
         <td id="img2"><img src="img/header.jpg" /></td>
         <td id="img3"></td>
    </tr>
</table>


Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
#img2{
    width: 689px;
    height: 369px;
    margin: 0px;
}
#img1,#img3{
    background: url('img/1.jpg') no-repeat top left,url('img/2.jpg') no-repeat top right;
    width: 262px;
    height: 171px;
    margin: 0px
}
mais ça ne fonctionne pas correctement