Skip to content

Instantly share code, notes, and snippets.

@Quinten
Last active July 26, 2022 14:35
Show Gist options
  • Select an option

  • Save Quinten/5720298 to your computer and use it in GitHub Desktop.

Select an option

Save Quinten/5720298 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;
}
@coder-shanks

Copy link
Copy Markdown

thanks u saved my day πŸ˜„

@Quinten

Quinten commented Dec 10, 2021 via email

Copy link
Copy Markdown
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment