problème CSS

problème CSS - HTML/CSS - Programmation

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;
}

Reply

Marsh Posté le 06-04-2003 à 13:24:46   

Reply

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


Message édité par antp le 06-04-2003 à 13:31:55

---------------
mes programmes ·· les voitures dans les films ·· apprenez à écrire
Reply

Marsh Posté le 06-04-2003 à 13:36:09    

ah ouais j'avais pas pensé a ca
 
merci beaucoup c sympa  :)

Reply

Marsh Posté le 06-04-2003 à 13:38:43    

maintenant ca me donne ca et ca marche nikel
 
merci
 

a {
    font-family: Arial, Verdana;
    font-style: normal;
    font-weight: normal;
    font-size: 9pt;
    color: #000000;
}
a:link {
    text-decoration: underline;
}
a:visited {
    text-decoration: underline;
}
a:active {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a.menu:link {
    text-decoration: none;
}
a.menu:visited {
    text-decoration: none;
}
a.menu:active {
    text-decoration: underline;
}
a.menu:hover {
    text-decoration: underline;
}

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed