Bonjour à toutes et à tous,
Affichage déficient
Je commence la création d'un site web. J'ai la surprise de constaer qu'un bandeau, bandeau2, ne s'affiche pas. Je n'arrive pas à corriger ce problème.
Fichier index
fichier styles
Avec mes remerciements
Cordialement
Papy
Modifié par Jean Sympa (16 Feb 2011 - 17:34)
Affichage déficient
Je commence la création d'un site web. J'ai la surprise de constaer qu'un bandeau, bandeau2, ne s'affiche pas. Je n'arrive pas à corriger ce problème.
Fichier index
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<link href="css/styles.css" rel="stylesheet" type="text/css">
<title>Accueil</title>
</head>
<body>
<div id="bandeau1">
<h1>Titre</h1>
</div>
<div id="bandeau2">
<div id="contenu">Ceci est le contenu</div>
<div id="pied_page">Ceci est le pied de page</div>
</div>
</body>
</html>
fichier styles
div {
text-align: center;
margin-right:auto;
margin-left:auto
}
div#bandeau1 {
clear: both;
width: 995px;
height: 50px;
background-color: #00ccff;
}
div#bandeau2 {
clear: both;
width: 995px;
height: 50px;
background-color: #33ffff;
}
div#contenu {
width: 995px;
height: 645px;
background-color: #ffcc00;
}
div#pied_page {
clear: both;
width: 995px;
height: 50px;
background-color: #33ff99;
}
Avec mes remerciements
Cordialement
Papy
Modifié par Jean Sympa (16 Feb 2011 - 17:34)