Probleme de css

Résolu
clerissalak -  
 clerissalak -
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   Statut Contributeur Dernière intervention   712
 
Salut!
peux t-on voir le code css??
0
clerissalak
 
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   Statut Contributeur Dernière intervention   712
 
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
clerissalak
 
Merci beaucoup!!!!!!
0