Bonjour , j'ai un probléme : j'ai créé un tableau ,et je souhaite integrer des cases de la méme couleur (pour tester)....
Se que sa donne : piéce jointe .
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 <head> <link rel="stylesheet" href="./site.css" type="text/css" /></head> <table class="map"> <tr> <td><a href="#" onClick="position(0,0)"><img src="./img/map/1.png"></a></td> <td><a href="#" onClick="position(1,0)"><img src="./img/map/1.png"></a></td> <td><a href="#" onClick="position(2,0)"><img src="./img/map/1.png"></a></td> <td><a href="#" onClick="position(3,0)"><img src="./img/map/1.png"></a></td> <td><a href="#" onClick="position(4,0)"><img src="./img/map/1.png"></a></td> </tr> <tr> <td><a href="#" onClick="position(0,1)"><img src="./img/map/1.png"></a></td> <td><a href="#" onClick="position(1,1)"><img src="./img/map/1.png"></a></td> <td><a href="#" onClick="position(2,1)"><img src="./img/map/1.png"></a></td> <td><a href="#" onClick="position(3,1)"><img src="./img/map/1.png"></a></td> <td><a href="#" onClick="position(4,1)"><img src="./img/map/1.png"></a></td> </tr> </table>
Je voudrai enlever le blanc entre les 2 images , comment faire ? ( j'ai tenter , j'ai pas réussi ... )
Partager