Voilà, j'ai un problème très simple
Quand je fais
<div align="center">
<table width="50%" cellpadding="1" cellspacing="0" border="1">
<tr>
<td>coucou</td>
</tr>
</table>
</div> |
Ca marche sous IE6 et Mozilla Firebird 0.7
Par contre
c'est pas XHTML 1.1
donc j'ai remplacé par ca :
<div style="text-align:center;">
<table width="50%" cellpadding="1" cellspacing="0" border="1">
<tr>
<td>coucou</td>
</tr>
</table>
</div> |
Ca marche nickel sous IE6, mais sous Mozilla, c'est aligné à gauche.
Donc, comment faire pour que mon code soit XHTML 1.1 ?