Html et css

Fermé
theo-fr - 23 août 2011 à 14:38
 theo-fr - 23 août 2011 à 14:48
Bonjour, je voudrais savoir comment changer en pariculier un, ou plusieurs mot de couleur,sachant que sa c'est mon code source de mon css: Merci de vos reponses =)
body
{
font-family: Comic Sans MS, Arial, Times New Roman;
font-size: 14px;
background-color: blue;

}

#conteneur
{
width: 1200px;
background-color: #000000;
margin: auto;
padding: 10px;
}


#header
{
margin:auto;
width: 1000px;
height: 225px;
}

#menus
{
width: 200px;
background-color: red;
float:left;
margin-bottom: 10px;
margin-top: 10px;
margin-left: 100px;

}

#menus a
{
color: black;
text-decoration: none;
}

#menus a:hover
{
color: white;
}


#menus h2
{
text-align:center;

}


#corps
{
background-color: white;
width: 850px;
margin-top: 10px;
margin-left: 210px;
margin-bottom: 10px;

}

#corps h1, h2
{
text-align:center;


}

#footer
{
background-color: grey;
clear:left;
margin-top: 10px;
text-align:center;
font-family: Times New Roman

}



A voir également:

3 réponses

aciddev Messages postés 173 Date d'inscription mardi 12 juillet 2011 Statut Membre Dernière intervention 24 août 2011 25
23 août 2011 à 14:43
<span class="nom_de_ta_classe"> Mot à colorer </span>

dans le CSS :

.nom_de_ta_classe{
color: #color;
}
1
Utilisateur anonyme
23 août 2011 à 14:41
Bonjour,

Tout dépend où ils se trouvent dans la page, donnez nous au moins la class ou l'id de l'élément qui les contient genre <div class='toto'>texte</div> ou <label id="machin">texte</label>
sinon on ne pourra pas vous aider.

cordialement
0
Merci de votre intérret, je vien de comprendre la solution tout seul.
Aurevoir.
0