Skip to content

Instantly share code, notes, and snippets.

@amyinorbit
Created June 26, 2012 10:44
Show Gist options
  • Save amyinorbit/2994975 to your computer and use it in GitHub Desktop.
Save amyinorbit/2994975 to your computer and use it in GitHub Desktop.
Link CSS management
/* définition du style des liens "normaux (non survolés)*/
a {
color: #666666;
background-color: transparent;
}
/* maintenant, en ajoutant ":hover", on définit le style au survol */
a:hover {
color: #FF00000; /* la couleur des liens survolés */
background-color: transparent; /* le fond des liens survolés (surlignage, en fait) */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment