Last active
April 27, 2016 08:20
-
-
Save qzm/ad3651578a684fb841f71a980fe10520 to your computer and use it in GitHub Desktop.
box shadow snippets
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
.className { | |
-webkit-box-shadow: 10px 10px 5px #888888; | |
-moz-box-shadow: 10px 10px 5px #888888; | |
-ms-box-shadow: 10px 10px 5px #888888; | |
-o-box-shadow: 10px 10px 5px #888888; | |
box-shadow: 10px 10px 5px #888888; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment