Skip to content

Instantly share code, notes, and snippets.

@owlsky
Created October 12, 2013 03:22
Show Gist options
  • Save owlsky/6945409 to your computer and use it in GitHub Desktop.
Save owlsky/6945409 to your computer and use it in GitHub Desktop.
Cross Browser Box-Shadow
.box-shadow {
-moz-box-shadow: 2px 2px 3px #969696; /* for Firefox 3.5+ */
-webkit-box-shadow: 2px 2px 3px #969696; /* for Safari and Chrome */
box-shadow: 2px 2px 3px #969696; /* W3C */
filter: progid:DXImageTransform.Microsoft.Shadow(color='#969696', Direction=145, Strength=3);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment