Created
March 20, 2012 12:44
-
-
Save gpassarelli/2134886 to your computer and use it in GitHub Desktop.
CSS: CSS Tooltips
This file contains 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
a:hover { | |
background:#ffffff; | |
text-decoration:none;} /*BG color is a must for IE6*/ | |
a.tooltip span { | |
display:none; | |
padding:2px 3px; | |
margin-left:8px; | |
width:130px; | |
} | |
a.tooltip:hover span{ | |
display:inline; | |
position:absolute; | |
background:#ffffff; | |
border:1px solid #cccccc; | |
color:#6c6c6c; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment