Skip to content

Instantly share code, notes, and snippets.

@digitalhitler
Created September 12, 2017 22:09
Show Gist options
  • Save digitalhitler/9ba174b51710b79ccf8eef25542ea246 to your computer and use it in GitHub Desktop.
Save digitalhitler/9ba174b51710b79ccf8eef25542ea246 to your computer and use it in GitHub Desktop.
Pure CSS tooltips
/**
(prototype that explains method`s logic)
Usage:
<a href="somewhere" class="with-tooltip" data-tooltip="Всплывашка">A href</a>
*/
.with-tooltip::after {
content: attr(data-tooltip);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment