Last active
February 22, 2016 19:53
-
-
Save adikahorvath/dbf3f401689e0a5abfca to your computer and use it in GitHub Desktop.
pseudo css title
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
<div data-title="Title"></div> |
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
div { | |
position: relative; | |
&:hover { | |
&:after { | |
background: #000; | |
color: #fff; | |
content: attr(data-title); | |
padding: 7px; | |
text-align: center; | |
position: absolute; | |
top: 100%; | |
left: 50%; | |
width: 100px; | |
margin-left: -50px; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment