Skip to content

Instantly share code, notes, and snippets.

@jerewall
Last active August 29, 2015 14:16
Show Gist options
  • Save jerewall/09a9ae9a17c5ddd42625 to your computer and use it in GitHub Desktop.
Save jerewall/09a9ae9a17c5ddd42625 to your computer and use it in GitHub Desktop.
Make the trailing 3d shadow on top navigations using CSS
/* Make the trailing 3d shadow on top navigations using CSS*/
.nav li {
content: "";
width: 0px;
height: 0px;
position: absolute;
bottom: -10px;
left: 0px;
border-width: 5px 5px 5px 5px;
border-style: solid;
border-color: #74593C #74593C transparent transparent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment