Skip to content

Instantly share code, notes, and snippets.

@bran921007
Created March 11, 2024 22:27
Show Gist options
  • Save bran921007/86464c01b5fbb1edbab32c11b0b6b96d to your computer and use it in GitHub Desktop.
Save bran921007/86464c01b5fbb1edbab32c11b0b6b96d to your computer and use it in GitHub Desktop.
Tooltip in CSS
.tooltip {
--base: 2em;
--height: 1em;
--color: #09f;
border-image:
fill 0 / 0 / var(--height)
conic-gradient(var(--color) 0 0);
clip-path:
polygon(0 100%, 0 0, 100% 0, 100% 100%,
calc(50% + var(--base) / 2) 100%,
50% calc(100% + var(--height)),
calc(50% - var(--base) / 2) 100%);
padding: 1em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment