Last active
December 11, 2015 05:19
-
-
Save monicams/4551716 to your computer and use it in GitHub Desktop.
Simple image box border and shadow on hover
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
/* ----------------------------------------- | |
drops shadow on image hover | |
----------------------------------------- */ | |
.theimage { | |
padding: 5px; | |
border: solid 1px #EFEFEF; | |
} | |
a:hover img.theimage { | |
border: solid 1px #CCC; | |
-moz-box-shadow: 1px 1px 5px #999; | |
-webkit-box-shadow: 1px 1px 5px #999; | |
box-shadow: 1px 1px 5px #999; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment