Skip to content

Instantly share code, notes, and snippets.

@a-double
Last active September 24, 2015 16:33
Show Gist options
  • Select an option

  • Save a-double/4a70589a9064c1b21099 to your computer and use it in GitHub Desktop.

Select an option

Save a-double/4a70589a9064c1b21099 to your computer and use it in GitHub Desktop.
Tooltip Arrows
/* Based on http://cssarrowplease.com, I just forget the URL all the time */
.tooltip {
position: relative;
background: #fff;
border: 1px solid #ddd;
}
.tooltip::before, .tooltip::after {
content: '';
bottom: 100%;
left: 50%;
width: 0;
height: 0;
pointer-events: none;
border: solid transparent;
}
.tooltip::after {
border: 30px solid transparent;
border-bottom-color: #fff;
margin-left: -30px;
}
.tooltip::before {
border-bottom: 32px solid transparent;
border-bottom-color: #ddd;
margin-left: -32px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment