Inset Drop Shadow
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;
}
<div>Content here</div>
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;
}