Created
June 30, 2020 20:31
-
-
Save gmp26/7ea2fc8b27ad3c99881a44f0520b8c79 to your computer and use it in GitHub Desktop.
css tooltip on alt attribute
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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