Skip to content

Instantly share code, notes, and snippets.

@sambody
Created June 11, 2013 22:50
Show Gist options
  • Save sambody/5761455 to your computer and use it in GitHub Desktop.
Save sambody/5761455 to your computer and use it in GitHub Desktop.
CSS: Drop shadow and inner shadow (IE9+), with box-shadow
/* normal dropshadow :
horizontalOffset verticalOffset blur spread(size) color inset
*/
-webkit-box-shadow: 0px 0px 4px 0px #ffffff;
box-shadow: 0px 0px 4px 0px #ffffff;
/* inset (inner) dropshadow */
-webkit-box-shadow: inset 0px 0px 4px 0px #ffffff;
box-shadow: inset 0px 0px 4px 0px #ffffff;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment