JSFiddle - React, Tailwind, and code Playground
HTML
<div class="shadowed">i have a fading shadow</div>
CSS
.shadowed {
background: white;
height: 400px;
margin: 100px;
padding: 20px;
position: relative;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}
/*.shadowed::after {
box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
display: block;
content: '';
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: +1;
}*/