Skip to content

Instantly share code, notes, and snippets.

@rcerrejon
Created February 11, 2016 10:54
Show Gist options
  • Save rcerrejon/b91883ea22217e296cd1 to your computer and use it in GitHub Desktop.
Save rcerrejon/b91883ea22217e296cd1 to your computer and use it in GitHub Desktop.
Borderbox with Shadows
/* Border box with shadows */
div {
border-radius: 3px;
box-shadow: 0 1px 5px #888;
}
/* Another 4 sides box shadow */
div {
border-radius: 6px;
box-shadow: 0px 0px 8px 4px #CCCCCC;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment