problème CSS - HTML/CSS - Programmation
Marsh Posté le 06-04-2003 à 13:31:14
Mets le ":hover" après les autres
Sinon un lien qui est en même temps hover et visited s'affichera comme visited et non comme hover
Et mets les trucs communs (police, taille) dans un
a
{
}
plutôt que de le répéter chaque fois
Marsh Posté le 06-04-2003 à 13:38:43
maintenant ca me donne ca et ca marche nikel
merci
a { |
Marsh Posté le 06-04-2003 à 13:24:46
bonjour
j'ai un pb avec ma css
je voudrais que les liens menu s'affiche sans soulignement et avec au passage de la souris et l'inverse pour des liens normaux
seulement la ca fonctionne mais lorsque j'ai deja cliqué une fois, le hover ne marche plus et il reste sur le visited au passage de la souris
pouvez-vous mindiquer pk ?
voici la partie de ma css correspondante
a:link {
text-decoration: underline;
font-family: Arial, Verdana;
font-style: normal;
font-weight: normal;
font-size: 9pt;
color: #000000;
}
a:hover {
text-decoration: none;
font-family: Arial, Verdana;
font-style: normal;
font-weight: normal;
font-size: 9pt;
color: #000000;
}
a:visited {
text-decoration: underline;
font-family: Arial, Verdana;
font-style: normal;
font-weight: normal;
font-size: 9pt;
color: #000000;
}
a:active {
text-decoration: none;
font-family: Arial, Verdana;
font-style: normal;
font-weight: normal;
font-size: 9pt;
color: #000000;
}
a.menu:link {
text-decoration: none;
font-family: Arial, Verdana;
font-style: normal;
font-weight: normal;
font-size: 9pt;
color: #000000;
}
a.menu:hover {
text-decoration: underline;
font-family: Arial, Verdana;
font-style: normal;
font-weight: normal;
font-size: 9pt;
color: #000000;
}
a.menu:visited {
text-decoration: none;
font-family: Arial, Verdana;
font-style: normal;
font-weight: normal;
font-size: 9pt;
color: #000000;
}
a.menu:active {
text-decoration: underline;
font-family: Arial, Verdana;
font-style: normal;
font-weight: normal;
font-size: 9pt;
color: #000000;
}