Created
October 12, 2013 03:22
-
-
Save owlsky/6945409 to your computer and use it in GitHub Desktop.
Cross Browser Box-Shadow
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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