Created
April 27, 2016 08:53
-
-
Save qzm/ba680e2b96e5ca939fdbdcf10b555fe3 to your computer and use it in GitHub Desktop.
tooltip snippets
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
.tooltip { | |
position: relative; | |
display: inline-block; | |
border-bottom: 1px dotted black; | |
} | |
.tooltip .tooltiptext { | |
visibility: hidden; | |
width: 120px; | |
background-color: black; | |
color: #fff; | |
text-align: center; | |
border-radius: 6px; | |
padding: 5px 0; | |
/* Position the tooltip */ | |
position: absolute; | |
z-index: 1; | |
} | |
.tooltip:hover .tooltiptext { | |
visibility: visible; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment