Created
July 20, 2012 05:21
-
-
Save udkl/3148845 to your computer and use it in GitHub Desktop.
Top Shadow to HTML page
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
body:before { | |
content: ""; | |
position: fixed; | |
top: -10px; | |
left: 0; | |
width: 100%; | |
height: 10px; | |
-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8); | |
-moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8); | |
box-shadow: 0px 0px 10px rgba(0,0,0,.8); | |
z-index: 100; | |
} | |
http://css-tricks.com/snippets/css/top-shadow/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment