Skip to content

Instantly share code, notes, and snippets.

@denwwer
Last active November 15, 2025 19:39
Show Gist options
  • Select an option

  • Save denwwer/ca5a92d8f0ed199b976e37a8ead6faf0 to your computer and use it in GitHub Desktop.

Select an option

Save denwwer/ca5a92d8f0ed199b976e37a8ead6faf0 to your computer and use it in GitHub Desktop.
/*tooltip*/
[data-tooltip]:not([data-tooltip=""]) {
position: relative;
}
[data-tooltip]:not([data-tooltip=""])::before {
content: attr(data-tooltip);
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
margin-bottom: 0.5rem;
padding: 0.3rem 0.6rem;
background: #1d2938;
color: #fff;
font-size: 0.8rem;
white-space: nowrap;
border-radius: 0.25rem;
opacity: 0;
pointer-events: none;
transition: opacity 0.2s;
z-index: 1000;
}
[data-tooltip]:not([data-tooltip=""]):hover::before {
opacity: 0.8 !important;
}
/*tooltip*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment