Add a Page top shadow CSS3

A ver cool CSS snippet that creates a shadow at the very top of your site.

Simple and elegant. You can see it at the top of this page ;)

body:before {

    content: "";
    position: fixed;
    top: -10px;
    left: -10px;
    width: 110%;
    height: 10px;
    z-index: 100;

    box-shadow: 0px 0px 10px rgba(0,0,0,.8);
}

Spread the word

No comments yet.

Leave a Reply