Skip to content

Instantly share code, notes, and snippets.

@Volker-E
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Volker-E/fa8b320613737bfc6e64 to your computer and use it in GitHub Desktop.
Save Volker-E/fa8b320613737bfc6e64 to your computer and use it in GitHub Desktop.
CSS Box-Shadow at top of page
body:before {
content: "";
position: fixed;
top: -10px;
left: 0;
width: 100%;
height: 10px;
-webkit-box-shadow: 0 0 10px rgba( 0, 0, 0, .8 );
-moz-box-shadow: 0 0 10px rgba( 0, 0, 0, .8 );
box-shadow: 0 0 10px rgba( 0, 0, 0, .8 );
z-index: 100;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment