JSFiddle - React, Tailwind, and code Playground
by Softlink
HTML
<div class="block"></div>
CSS
.block{
position: relative;
margin: 50px;
width: 200px;
height: 400px;
color: #222;
border: 1px solid #ccc;
overflow: hidden;
}
.block:before{
content:'';
position: absolute;
top: 10px;
bottom: 10px;
left: -100px;
width: 100px;
box-shadow: 3px 0 30px 5px #ccc;
border-radius: 5%;
}