|
|
Bonjour je n'arrive pas mon dernier tableau comme je le veux, les 3 premiers aucun soucis mais celui ne veux rien savoir >.<
Voici le code source de la page:
<!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" xml:lang="fr" >
<head>
<title>Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" media="screen" type="text/css" title="Design" href="style.css" />
<link rel="stylesheet" media="screen" type="text/css" title="Design" href="body.css" />
</head>
<body>
<div class="dtbh">
<table width=100% height=85 border=1>
<tr>
<td><center>Index</center></td>
</tr>
</table>
</div>
<div class="dtbm">
<table width=10% height=600 border=1>
<tr>
<td valign="top" align="center">Menu</td>
</tr>
</table>
</div>
<div class="dtbc">
<table width=75% height=600 border=1>
<tr>
<td valign="middle" align="center">Pricipale</td>
</tr>
</table>
</div>
<div class="dtba">
<table width=10% height=600 border=1>
<tr>
<td valign="top" align="center">Autre</td>
</tr>
</table>
</div>
</body>
</html>
Et celui du css "body":
body {
background-color : #000000;
}
/* Tableaux */
div.dtbh { /* Div Tableau Haut */
position : absolute;
left : 3%;
right : 3%;
top : 5%;
}
div.dtbm { /* Div Tableau Menu */
position : absolute;
left : 3%;
top : 18%;
}
div.dtbc { /* Div Tableau Centrale */
position : absolute;
left : 14%;
top : 18%;
}
div.dtba { /* Div Tableau Autre */
position : absolute;
right : 3%;
top : 18%;
}
Si vous pouviez m'aider a trouver mon erreur.
Badboyss.
|