Skip to content

Instantly share code, notes, and snippets.

@monicams
Last active December 11, 2015 05:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monicams/4551716 to your computer and use it in GitHub Desktop.
Save monicams/4551716 to your computer and use it in GitHub Desktop.
Simple image box border and shadow on hover
/* -----------------------------------------
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