Bonjour,

je pense ne pas tout avoir bien compris dans le rôle du séparateur virgule...

FONCTIONNE :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
 
#ADRESSE h1 a:link {text-decoration:none ; color:#FFFFFF ;}
#ADRESSE h1 a:visited {text-decoration:none ; color:#FFFFFF ;}
#ADRESSE h1 a:hover {text-decoration:none ; color:#FFFFFF ;}
#ADRESSE h1 a:active {text-decoration:none ; color:#FFFFFF ;}
NE FONCTIONNE PAS
Code : Sélectionner tout - Visualiser dans une fenêtre à part
#ADRESSE h1 a:link, a:visited , a:hover , a:active {text-decoration:none ; color:#FFFFFF ;}
FONCTIONNE
Code : Sélectionner tout - Visualiser dans une fenêtre à part
#ADRESSE h1 a:link, h1 a:visited , h1 a:hover , h1 a:active {text-decoration:none ; color:#FFFFFF ;}
Savez-vous pourquoi ?