Created
March 28, 2013 11:32
-
-
Save heckmac/5262513 to your computer and use it in GitHub Desktop.
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
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