Bonjour, j'ai un div qui contient data, j'aimerais afficher un tableau (pas pour de la mise en page, sois-dit en passant) et que celui-ci soit center dans mon div. IE affiche précisément ça, mais Firefox me l'affiche toujours à geuche, donc j'imagine qui à quelque chose qui cloche!!!
Modifié par poussy-puce (25 Aug 2006 - 15:08)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Test</title>
<style type="text/css">
div.frame
{
width : 100%;
text-align: center;
}
table
{
border : 0 solid;
border-collapse: collapse;
padding: 0;
width : 10%;
}
</style>
</head>
<body style="text-align: center;">
<div class="frame1">
<form method="post" ACTION="page.htm" target="_self" id="form1" name="form1">
<input type="hidden" name="ln" value="fr">
<table>
<tr>
<td class="texte8n">
Voici un tableau de data
</td>
</tr>
</table>
</form>
</div>
</BODY>
</HTML>
Modifié par poussy-puce (25 Aug 2006 - 15:08)