Skip to content

Instantly share code, notes, and snippets.

@bstonedev
Created August 12, 2020 22:47
Show Gist options
  • Save bstonedev/a47c4d7c68dcc4dc49c8c01bab8b45e1 to your computer and use it in GitHub Desktop.
Save bstonedev/a47c4d7c68dcc4dc49c8c01bab8b45e1 to your computer and use it in GitHub Desktop.
CSS for inset box-shadow

| With border | With box-shadow | | border: 1px solid red | box-shadow: inset 0 0 0 -1px red | | border-top: 1px solid red | box-shadow: inset 0 1px 0 0 red | | border-right: 1px solid red | box-shadow: inset -1px 0 0 red | | border-bottom: 1px solid red | box-shadow: inset 0 -1px 0 0 red | | border-left: 1px solid red | box-shadow: inset 1px 0 0 red |

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment