Bonjour,
Que je mette cela :
ou cela :
Mon tableau de prend pas 100% de la page !
Est-je mal fait quelque chose? (les 2 pages sont valides W3C)
Merci d'avance pour votre aide
Modifié par 23-UNIT (19 Nov 2006 - 06:20)
Que je mette cela :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Document sans nom</title>
</head>
<body>
<table width="90%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="100%" bgcolor="#999999"> </td>
</tr>
</table>
</body>
</html>
ou cela :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Document sans nom</title>
<style type="text/css">
<!--
.td1 {
height:100%;
background-color:#999999;
}
-->
</style>
</head>
<body>
<table width="90%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="td1"> </td>
</tr>
</table>
</body>
</html>
Mon tableau de prend pas 100% de la page !
Est-je mal fait quelque chose? (les 2 pages sont valides W3C)
Merci d'avance pour votre aide
Modifié par 23-UNIT (19 Nov 2006 - 06:20)