[HTML] Problème de tableau sous Internet Explorer
Bonjour,
J'ai créer un document HTML qui comporte une image découpée et affiché dans un tableau afin de pouvoir faire des liens sur différentes parties de l'image.
Sous Firefox je n'ai aucun problème, par contre sous internet explorer je me retrouve avec un espace horizontal entre les lignes du tableau.
J'ai essayé beaucoup de solution pour les enlever mais sans résultat.
J'espère que vous pourrez m'aider. Merci.
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
| <HTML>
<head>
<style type="text/css">
a:link{text-decoration:none;}
a img{border:none; display: block;}
table{border-collapse: collapse;}
</style>
</head>
<body>
<div align="center">
<img SRC="../emailing/partie1.jpg">
<table cellpadding=0 cellspacing=0 border=0>
<tr>
<td>
<a href="http://www.polenucleairebourgogne.fr" target="_blank">
<img SRC="../emailing/polenucleaire.jpg">
</td>
<td rowspan=8>
<img SRC="../emailing/partie2-2.jpg">
</td>
</tr>
<tr>
<td>
<a href="http://www.elanchalon.com" target="_blank">
<img SRC="../emailing/elan.jpg">
</td>
</tr>
<tr>
<td>
<a href="http://www.lecharlemagne.fr" target="_blank">
<img SRC="../emailing/charlemagne.jpg">
</td>
</tr>
<tr>
<td>
<a href="http://www.cmd-bourgogne.fr" target="_blank">
<img SRC="../emailing/cmd.jpg">
</td>
</tr>
<tr>
<td>
<a href="http://www.le-saintgeorges.fr" target="_blank">
<img SRC="../emailing/saintgeorges.jpg">
</td>
</tr>
<tr>
<td>
<a href="http://www.musicaves.fr" target="_blank">
<img SRC="../emailing/musicaves.jpg">
</td>
</tr>
<tr>
<td>
<a href="http://www.givry.com" target="_blank">
<img SRC="../emailing/givry.jpg">
</td>
</tr>
<tr>
<td>
<a href="http://www.bourgogne-copie.fr" target="_blank">
<img SRC="../emailing/bourgogne.jpg">
</td>
</tr>
</table>
<table cellpadding=0 cellspacing=0 border=0>
<tr>
<td>
<img SRC="../emailing/partie3.jpg">
</td>
</tr>
<tr>
<td>
<a href="http://www.studiochaperonrouge.fr" target="_blank">
<img SRC="../emailing/partie4.jpg">
</td>
</tr>
</table>
</Div>
</Body>
</HTML> |