Skip to content

Instantly share code, notes, and snippets.

@adikahorvath
Last active February 22, 2016 19:53
Show Gist options
  • Save adikahorvath/dbf3f401689e0a5abfca to your computer and use it in GitHub Desktop.
Save adikahorvath/dbf3f401689e0a5abfca to your computer and use it in GitHub Desktop.
pseudo css title
<div data-title="Title"></div>
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