Skip to content

Instantly share code, notes, and snippets.

@konrad-gibaszewski
Last active October 5, 2015 07:58
Show Gist options
  • Save konrad-gibaszewski/2775012 to your computer and use it in GitHub Desktop.
Save konrad-gibaszewski/2775012 to your computer and use it in GitHub Desktop.
CSS box-shadow
/* box-shadow: none | <shadow> [,<shadow>]* where <shadow> is defined as: inset? && [ <offset-x> <offset-y> <blur-radius>? <spread-radius>? <color>? ] */
-webkit-box-shadow: 0 1px 2px 0 #4A4A4A;
-moz-box-shadow: 0 1px 2px 0 #4A4A4A;
box-shadow: 0 1px 2px 0 #4A4A4A;
/* https://developer.mozilla.org/en/CSS/box-shadow */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment