Inset box shadow 3 sides

by dhavaljani

HTML

<div class="example"></div>

CSS

body {
    background: #eee;
}
.example {
    box-shadow: inset 1px 4px 9px -6px;
    background: #eee;
}


/* set up the box */
.example {
    height: 100px;
    width: 300px;
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}