Inset Drop Shadow

by Chris LaFrombois

HTML

<div>Content here</div>

CSS

body{ font-family: arial; font-size: 12px;}

div {
    text-align: center;
    width: 300px; 
    height: 300px;
    box-shadow: 0px -300px 200px -200px #999 inset;
    margin: auto;
}