Salut,
si tu utilises un fichier css pour ton design, tu peux faire comme ca:
fichier index.thm
<!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></title>
<link href="style.css" rel="stylesheet" type="text/css" media="all" />
</head>
<body>
<div id="bandeau">
<p><img src="tonimage.jpg" alt="tonimage" /></p>
<p class="texte"><marquee>Ton texte qui défile</marquee></p>
</div>
<div id ="contenu">
<p>Ta page Internet</p>
</div>
</body>
</html>
ton fichier style.css
body
{
width: 900px;
height: auto;
}
#bandeau
{
width: 900px;
min-height: 50px;
border: 1px solid black;
padding-bottom: 10px;
margin-bottom: 10px;
}
#contenu
{
width: 900px;
height: auto;
border: 1px solid black;
}
Si tu veux supprimer les bords, il faut que tu enleves les lignes "border".
La hauteur de ton bandeau sera de 50 pixels minimum et s'adaptera selon ton contenu.
Ciao