Created
November 17, 2016 02:43
-
-
Save himalay/5259bdbec7339f1fda4959f8cfe5af1c to your computer and use it in GitHub Desktop.
CSS Tooltip (http://netdna.webdesignerdepot.com/uploads7/how-to-create-a-simple-css3-tooltip/tooltip_demo.html)
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
<style type="text/css"> | |
.tooltip{ | |
display: inline; | |
position: relative; | |
} | |
.tooltip:hover:after{ | |
background: #333; | |
background: rgba(0,0,0,.8); | |
border-radius: 5px; | |
bottom: 26px; | |
color: #fff; | |
content: attr(title); | |
left: 20%; | |
padding: 5px 15px; | |
position: absolute; | |
z-index: 98; | |
width: 220px; | |
} | |
.tooltip:hover:before{ | |
border: solid; | |
border-color: #333 transparent; | |
border-width: 6px 6px 0 6px; | |
bottom: 20px; | |
content: ""; | |
left: 50%; | |
position: absolute; | |
z-index: 99; | |
} | |
</style> | |
<a href="#" title="This is some information for our tooltip." class="tooltip"><span title="More">CSS3 Tooltip</span></a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment