[xhtml1.0 s]Problème de compatibilité IE7 FF
Bonjour à tous,
J'essaye de faire apparaître simplement une table à 100% sur la page, avec 3 lignes. La première et la dernière ont une taille fixée, la deuxième prend ce qu'il reste sur la page. Sous Firefox, pas de problème, mais sous IE, c'est la troisième ligne qui prend le reste de la page. Est-ce que vous auriez une idée pour résoudre ce problème ?
Merci d'avance
Voici le code
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" style="height: 100%;width: 100%">
<head>
<title>Nouvelle page 1</title>
</head>
<body style="margin: 0px;height: 100%;width: 100%">
<table border="1" style="height:100%; width:100%;">
<tr style="height:55px;">
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr style="height:200px;">
<td> </td>
</tr>
</table>
</body>
</html> |