Bonjour,
Certaine cellules ont un border-top et d'autres un border-bottom cependant celle-ci ne sont pas alignés.
Un code du même type pour exemple :
<table cellspacing="0" cellpadding="0">
<tr>
<td style="border-left:#000000 3px solid; border-right:#000000 3px solid; border-top:#000000 3px solid;" height="22px" width="80px">
text1
</td>
<td style="border-right:#000000 3px solid; border-top:#000000 3px solid;" height="22px" width="80px">
text2
</td>
<td style="border-right:#000000 3px solid; border-top:#000000 3px solid; border-bottom:#000000 3px solid;" height="22px" width="80px">
text3
</td>
</tr>
<tr>
<td style="border:#000000 3px solid;" height="22px" width="80px">
text1
</td>
<td style="border-right:#000000 3px solid; border-top:#000000 3px solid; border-bottom:#000000 3px solid;" height="22px" width="80px">
text2
</td>
</tr>
</table>
Le problème se pose sous IE6 ainsi que sous firefox. Une solution pour ie6 uniquement ferait l'affaire.
Merci d'avance pour votre aide.