Created
June 26, 2012 10:44
-
-
Save amyinorbit/2994975 to your computer and use it in GitHub Desktop.
Link CSS management
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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