Skip to content

Instantly share code, notes, and snippets.

@DigitalEssence
Created November 15, 2013 15:57
Show Gist options
  • Save DigitalEssence/7486662 to your computer and use it in GitHub Desktop.
Save DigitalEssence/7486662 to your computer and use it in GitHub Desktop.
Create a shadow border around div
.divclassname {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 3px 6px rgba(0,0,0, .2);
background: #fff;
margin: 0 3px 40px;
padding: 20px 0 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment