Created
June 2, 2010 00:09
-
-
Save dshaw/421720 to your computer and use it in GitHub Desktop.
CSS3 Multiple box-shadows
This file contains hidden or 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
#shadow { | |
-moz-box-shadow: | |
10px 10px 25px rgba(0, 0, 0, 0.25), | |
10px 10px 5px rgba(0, 0, 0, 0.5), | |
0 5px 5px -3px black; | |
-webkit-box-shadow: | |
10px 10px 25px rgba(0, 0, 0, 0.25), | |
10px 10px 5px rgba(0, 0, 0, 0.5), | |
0 5px 5px -3px black; | |
box-shadow: | |
10px 10px 25px rgba(0, 0, 0, 0.25), | |
10px 10px 5px rgba(0, 0, 0, 0.5), | |
0 5px 5px -3px black; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment