Skip to content

Instantly share code, notes, and snippets.

@vrushank-snippets
Created March 23, 2012 11:56
Show Gist options
  • Save vrushank-snippets/2169993 to your computer and use it in GitHub Desktop.
Save vrushank-snippets/2169993 to your computer and use it in GitHub Desktop.
CSS : CSS Tooltip
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