css, j'ai besoin d'un peu d'aide - HTML/CSS - Programmation
Marsh Posté le 01-12-2002 à 17:44:15
Y'a des problèmes d'accolades...
.texte {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-style: normal;
font-weight: normal;
}
.titre {
font-family: Arial, Helvetica, sans-serif;
font-size: 24px;
color: #000099;
text-align: center;
font-weight: bold;
}
.menubox {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
color: #FFFFFF;
background-color: #000099;
padding: 5px;
height: 22px;
width: 190px;
text-align: center;
}
A:hover {
font-weight : bold;
font-size : 14px;
font-family : Arial;
color : #FFFFFF;
background : #000099;
text-decoration : underline;
}
A:visited, A:link, A:active {
font-weight : bold;
font-size : 14px;
font-family : Arial;
color : #000099;
text-decoration : none;
}
Marsh Posté le 03-12-2002 à 10:50:47
ha, oki, merci, ça marche !
et si je veux faire un A:hover pour .texte et un autre A:hover pour .menubox, il y a moyen ?
Marsh Posté le 03-12-2002 à 10:59:42
a.menubox:hover
{
}
a.texte:hover
{
}
recommandation : télécharge-toi, si c'est pas déjà fait, TopStyle Lite. Petit freeware tout bien pour jouer aux css.
L'essayer c'est l'adopter
Marsh Posté le 09-12-2002 à 13:36:24
Reply
Marsh Posté le 01-12-2002 à 14:38:59
voilà, je me suis mis aux css mais je pige pas très très bien et comme dreamweaver est assez pauvre pour leur gestion, je suis un peu coincé..
j'ai pondu ça :
.texte {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-style: normal;
font-weight: normal;
}
.titre {
font-family: Arial, Helvetica, sans-serif;
font-size: 24px;
color: #000099;
text-align: center;
font-weight: bold;
}
.menubox {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
color: #FFFFFF;
background-color: #000099;
padding: 5px;
height: 22px;
width: 190px;
text-align: center;
A:hover
font-weight : bold;
font-size : 14px;
font-family : Arial;
color : #FFFFFF;
background : #000099;
text-decoration : underline;
A:visited, A:link, A:active
font-weight : bold;
font-size : 14px;
font-family : Arial;
color : #000099;
text-decoration : none;
}
Et ça passe pas, alors comment je dois faire pour que quand on passe sur un lien de type menubox ça change de couleur ?