Skip to content

Instantly share code, notes, and snippets.

@Hexodus
Created June 26, 2013 07:16
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 Hexodus/5865388 to your computer and use it in GitHub Desktop.
Save Hexodus/5865388 to your computer and use it in GitHub Desktop.
Soft CSS3 box shadow cross browser
/* x-pos, y-pos*, blur, spread, #color */
.box_shadow {
-webkit-box-shadow: 5px 5px 3px 1px #595959;/* WebKit */
-moz-box-shadow: 5px 5px 3px 1px #595959; /* Firefox */
box-shadow: 5px 5px 3px 1px #595959; /* Standard */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment