Probleme de css

Résolu/Fermé
clerissalak - 7 févr. 2009 à 22:03
 clerissalak - 7 févr. 2009 à 22:38
Bonjour,
je ne comprends pas, je commence la réalisation d'un site web (pour un examen...),
j'ai crée en premier lieu une page de style css que j'ai rattachée à ma page index mais seuls les paramétrés concernant la balise "body" fonctionnent, tous ceux référant aux autres catégories ne marchent pas, les "boites" ne se créent pas...
Je vous copie le peu de code que j'ai écrit, si quelqu'un peut me venir en aide, ce serait super!
En vous remerciant
Clerissalak

<HTML>
<HEAD>
<link href="style.css" rel="stylesheet" type="text/css"/>
<TITLE>Untitled Document</TITLE>
</HEAD>

<BODY>
<div class ="entete"></div>
<div class ="menu"></div>
<div class ="contenu"></div>
<div class ="pieddepage"></div>
</BODY>
</HTML>

2 réponses

bissdebrazza Messages postés 2065 Date d'inscription vendredi 29 juin 2007 Statut Contributeur Dernière intervention 7 décembre 2017 712
7 févr. 2009 à 22:20
Salut!
peux t-on voir le code css??
0
on peut ;)


body {
font-family: Verdana,sans serif;
font-size: 35px;
margin-left: 80px;
margin-right: 80px;
margin-top: 100px;
margin-bottom: 100px;
text-align: justify;
background-color: #DAFFFF;
}

entete{
font-size:14pt;
width:800px;
height: 200px;
background-color: #256100;
}

menu{
margin-top:150px;
width:300px;
height: 600px;
background-color: #256100;
}

contenu{
margin-top:150px;
margin-left:150px;
width:800px;
height:600px;
background-color: #256100;
}

pieddepage{
margin-top:600px;
width:800px;
height:100;
background-color: #256100;
}
0
bissdebrazza Messages postés 2065 Date d'inscription vendredi 29 juin 2007 Statut Contributeur Dernière intervention 7 décembre 2017 712
7 févr. 2009 à 22:36
body {
font-family: Verdana,sans serif;
font-size: 35px;
margin-left: 80px;
margin-right: 80px;
margin-top: 100px;
margin-bottom: 100px;
text-align: justify;
background-color: #DAFFFF;
}

.entete{
font-size:14pt;
width:800px;
height: 200px;
background-color: #256100;
}

.menu{
margin-top:150px;
width:300px;
height: 600px;
background-color: #256100;
}

.contenu{
margin-top:150px;
margin-left:150px;
width:800px;
height:600px;
background-color: #256100;
}

.pieddepage{
margin-top:600px;
width:800px;
height:100;
background-color: #256100;
}
0
Merci beaucoup!!!!!!
0