Skip to content

Instantly share code, notes, and snippets.

@gmp26
Created June 30, 2020 20:31
Show Gist options
  • Save gmp26/7ea2fc8b27ad3c99881a44f0520b8c79 to your computer and use it in GitHub Desktop.
Save gmp26/7ea2fc8b27ad3c99881a44f0520b8c79 to your computer and use it in GitHub Desktop.
css tooltip on alt attribute
a {
position: relative;
display: inline-block;
margin-top: 50px;
}
a[alt]:hover:after {
content: attr(alt);
position: absolute;
top: -20px;
left: 100px;
width: 90px;
padding: 20px;
border-radius: 5px;
border: 1px solid #CCC;
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment