Skip to content

Instantly share code, notes, and snippets.

@hmcclungiii
Created March 20, 2015 19: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 hmcclungiii/78fba220c8fa97b07261 to your computer and use it in GitHub Desktop.
Save hmcclungiii/78fba220c8fa97b07261 to your computer and use it in GitHub Desktop.
CSS to add borders to any box element.
.borders {
-webkit-box-shadow: 0px 1px 3px #666666;
-moz-box-shadow: 0px 1px 3px #666666;
box-shadow: 0px 1px 3px #666666;
-webkit-border-radius: 10;
-moz-border-radius: 10;
border-radius: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment