Tableau HTML centré

Fermé
jlebohec - 16 juin 2011 à 10:19
 ed - 16 juin 2011 à 15:29
Bonjour,

J'ai à peu près le même problème, voici mon code :

<table align="center" border="1" >
<tbody>
<tr>
<th>Préconisations</th>
<th>Evènements</th>
</tr>
<tr>
<td>
<div class="separator" style="clear: both; text-align: left;"><a href="http://julienlebohec.files.wordpress.com/2011/06/special-t.ppsx"><img class="alignleft size-full wp-image-43" title="PPT préconisations" src="http://julienlebohec.files.wordpress.com/2011/06/pptlogo1.png" alt="" width="136" height="136" /></a></div></td>
<td><a href="http://julienlebohec.files.wordpress.com/2011/06/c3a9vc3a8nement-final-special-t.ppsx"><img class="alignright size-full wp-image-44" title="PPT évènement" src="http://julienlebohec.files.wordpress.com/2011/06/pptlogo2.png" alt="" width="131" height="131" /></a></td>
</tr>
</tbody>
</table>

Je souhaite pour ma part, tout centrer : tableaux, texte et images

Quelqu'un pourrait-il m'aider ?

Merci d'avance



7 réponses

Voili Voilou :

<html>
<head>
<title>
Centrer table
</title>
</head>
<body>
<div style="width:100%; text-align:center;">
<TABLE>
<TBODY>
<TR>
<TD>
<INPUT value="Bouton Center" type=button>
</TD>
</TR>
</TBODY>
</TABLE>
</div>
</body>
</html>
0