Skip to content

Instantly share code, notes, and snippets.

@Lego2012
Created September 26, 2016 20:23
Show Gist options
  • Save Lego2012/4976bb95d862481fc0991d1b252c291e to your computer and use it in GitHub Desktop.
Save Lego2012/4976bb95d862481fc0991d1b252c291e to your computer and use it in GitHub Desktop.
Box Shadow
/* Outer shadow */
.shadow {
-moz-box-shadow: 5px 5px 5px #ccc;
-webkit-box-shadow: 5px 5px 5px #ccc;
box-shadow: 5px 5px 5px #ccc;
}
/* Inner shadow */
.shadow {
-moz-box-shadow:inset 0 0 10px #000000;
-webkit-box-shadow:inset 0 0 10px #000000;
box-shadow:inset 0 0 10px #000000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment