Skip to content

Instantly share code, notes, and snippets.

@heckmac
Created March 28, 2013 11:32
Show Gist options
  • Save heckmac/5262513 to your computer and use it in GitHub Desktop.
Save heckmac/5262513 to your computer and use it in GitHub Desktop.
body{background-color:green;}
.container{
position: relative;
z-index:1;
width:100px;
height:100px;
margin:30px;
border:1px solid red;
overflow:hidden;
color:red;
}
.container:before{
id:'test';
z-index:-1;
position:absolute;
width:100px;
height:100px;
left:0;
top:0;
content: url('https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRzGVkmVr-CRTsvylvJtFHfssI3CJVlYUoODqJA1qQd5oY8-PhH');
opacity:0.4
}
.container:hover:before{
opacity:1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment