Skip to content

Instantly share code, notes, and snippets.

@atomtigerzoo
Created November 17, 2015 10:07
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 atomtigerzoo/16219f8fe8dc13a2c587 to your computer and use it in GitHub Desktop.
Save atomtigerzoo/16219f8fe8dc13a2c587 to your computer and use it in GitHub Desktop.
CSS snippet with inset shadow examples for reference.
.inset-top{
box-shadow: inset 0 7px 9px -7px rgba(0,0,0,0.4);
}
.inset-left{
box-shadow: inset 7px 0 9px -7px rgba(0,0,0,0.4);
}
.inset-right{
box-shadow: inset -7px 0 9px -7px rgba(0,0,0,0.4);
}
.inset-bottom{
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