Created
March 23, 2012 11:56
-
-
Save vrushank-snippets/2169993 to your computer and use it in GitHub Desktop.
CSS : CSS Tooltip
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
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;} | |
Easy <a class="tooltip" href="#">Tooltip<span>This is the crazy little Easy Tooltip Text.</span></a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment