Skip to content

Instantly share code, notes, and snippets.

@NatalieMac
Last active January 2, 2016 18:58
Show Gist options
  • Save NatalieMac/8346818 to your computer and use it in GitHub Desktop.
Save NatalieMac/8346818 to your computer and use it in GitHub Desktop.
CSS to show text only on hover
span.text-content {
background: rgba(0,0,0,0.5);
color: white;
cursor: pointer;
display: table;
height: 150px;
left: 0;
position: absolute;
top: 0;
width: 150px;
opacity: 0;
}
ul.img-list li:hover span.text-content {
opacity: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment