Created
February 11, 2016 10:54
-
-
Save rcerrejon/b91883ea22217e296cd1 to your computer and use it in GitHub Desktop.
Borderbox with Shadows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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