Skip to content

Instantly share code, notes, and snippets.

@lgraubner
Created September 14, 2015 14:03
Show Gist options
  • Save lgraubner/8f78d2df0551b811c083 to your computer and use it in GitHub Desktop.
Save lgraubner/8f78d2df0551b811c083 to your computer and use it in GitHub Desktop.
Apply inset box shadow on one side only
.top-box {
box-shadow: inset 0 7px 9px -7px rgba(0,0,0,0.4);
}
.left-box {
box-shadow: inset 7px 0 9px -7px rgba(0,0,0,0.4);
}
.right-box {
box-shadow: inset -7px 0 9px -7px rgba(0,0,0,0.4);
}
.bottom-box {
box-shadow: inset 0 -7px 9px -7px rgba(0,0,0,0.4);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment