Skip to content

Instantly share code, notes, and snippets.

@qzm
Last active April 27, 2016 08:20
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 qzm/ad3651578a684fb841f71a980fe10520 to your computer and use it in GitHub Desktop.
Save qzm/ad3651578a684fb841f71a980fe10520 to your computer and use it in GitHub Desktop.
box shadow snippets
.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