Skip to content

Instantly share code, notes, and snippets.

@SaraSoueidan
Created June 8, 2013 02:46
Show Gist options
  • Save SaraSoueidan/5733782 to your computer and use it in GitHub Desktop.
Save SaraSoueidan/5733782 to your computer and use it in GitHub Desktop.
CSS Drop Shadows in 4 directions
.drop-shadow {
background: #9479fa;
}
.drop-shadow.top {
box-shadow: 0 -4px 2px -2px rgba(0,0,0,0.4)
}
.drop-shadow.right {
box-shadow: 4px 0 2px -2px rgba(0,0,0,0.4)
}
.drop-shadow.bottom {
box-shadow: 0 4px 2px -2px rgba(0,0,0,0.4)
}
.drop-shadow.left {
box-shadow: -4px 0 2px -2px rgba(0,0,0,0.4)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment