Skip to content

Instantly share code, notes, and snippets.

@qzm
Created April 27, 2016 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qzm/ba680e2b96e5ca939fdbdcf10b555fe3 to your computer and use it in GitHub Desktop.
Save qzm/ba680e2b96e5ca939fdbdcf10b555fe3 to your computer and use it in GitHub Desktop.
tooltip snippets
.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