Bonjour j'ai commence a faire une page et je m'aperçois qu'il y a une espace en haut de la page que je ne veux pas :
http://img145.imageshack.us/img145/1806/sanstitreyw8.png
Voici le fichier HTML :
et Voici le CSS :
Avant je faisais le même code je n'avais pas de problème !
Modifié par pas495 (27 Jul 2008 - 15:56)
http://img145.imageshack.us/img145/1806/sanstitreyw8.png
Voici le fichier HTML :
<?php
include("includes/config.php");
?>
<!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><?php echo $config["nomDuSite"];?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" media="screen" type="text/css" title="Main" href="styles.css" />
</head>
<body>
<div id="header">
<ul id="navbar">
<li><a class="hover" href="index.php">HOME</a></li>
<?php
for($i=0; $i < count($config["cat"]); $i++)
{
?>
<li><a href="cat.php?id=<?php echo $config["cat"][$i];?>"><?php echo strtoupper($config["cat"][$i]);?></a></li>
<?php
}
?>
</ul>
</div>
</body>
</html>
et Voici le CSS :
*
{
margin: 0px;
padding: 0px;
}
body
{
margin: auto;
width: 800px;
background-color: #000;
font: normal .70em/1.6em Verdana, 'Trebuchet MS', Tahoma, sans-serif;
color: grey;
}
#header
{
width: 800px;
height: 150px;
background: url("images/banner.png");
}
Avant je faisais le même code je n'avais pas de problème !
Modifié par pas495 (27 Jul 2008 - 15:56)