Created
September 4, 2015 00:30
-
-
Save pablocattaneo/8a083a5554fa94eacea0 to your computer and use it in GitHub Desktop.
sombra de un sólo lado.
http://stackoverflow.com/questions/5115427/how-can-i-add-a-box-shadow-on-one-side-of-an-element
Yes, you can use the shadow spread property of the box-shadow rule:
The fourth property there -2px is the shadow spread, you can use it to change the spread of the shadow, making it appear that the shadow is on one side only. T…
This file contains hidden or 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
.wrapperLogoHeader { | |
border-right: 1px solid #333; | |
box-shadow: 6px 0 5px -2px #333; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment