css - Possibility CSS3 Border similar to image -
i'm interest know if it's possible create border css3 similar following image?
use box-shadow
body { background: grey } div { position: absolute; width: 70%; height: 30%; top: 0; right: 0; bottom: 0; left: 0; margin: auto; background: #666; /* box shadow applies effect you're after */ box-shadow: inset 0 -18px 16px -16px #444, 0 6px 6px -7px #fff, 0 14px 8px -7px #444; }
<div></div>
Comments
Post a Comment