Skip to content

Instantly share code, notes, and snippets.

@fogmoon
Forked from Quinten/css triangle tooltip
Created July 26, 2022 14:35
Show Gist options
  • Save fogmoon/d3017dedacce3cf62bca4819c80a1bf5 to your computer and use it in GitHub Desktop.
Save fogmoon/d3017dedacce3cf62bca4819c80a1bf5 to your computer and use it in GitHub Desktop.
tooltip triangle on the top of an element in css
#element:before {
content: "";
position: absolute;
width: 0;
height: 0;
border-left: 16px solid transparent;
border-right: 16px solid transparent;
border-bottom: 16px solid #fff;
top: -15px;
left: 27px;
z-index: 5;
}
#element:after {
content: "";
display: block;
position: absolute;
width: 0;
height: 0;
border-left: 16px solid transparent;
border-right: 16px solid transparent;
border-bottom: 16px solid #bbb;
top: -16px;
left: 27px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment