Skip to content

Instantly share code, notes, and snippets.

@sbrl
Last active September 17, 2017 09:30
Show Gist options
  • Save sbrl/76ca3e411ecd6470c177cd9d493eaf31 to your computer and use it in GitHub Desktop.
Save sbrl/76ca3e411ecd6470c177cd9d493eaf31 to your computer and use it in GitHub Desktop.
Displays the contents of the `data-badge-content` attribute as a badge on an icon. Built to loosely mimic what amazon used to do with their basket. #css
.badge-text:after
{
content: attr(data-badge-content);
z-index: 10000;
position: absolute;
top: 60%; left: 50%;
width: 1em; height: 1em;
background: white;
border-radius: 50%;
text-align: center;
font-family: sans-serif;
font-size: 0.8em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment