JSFiddle - React, Tailwind, and code Playground
by disfated
HTML
<div> HAY</div>
CSS
div {
background: #ccc;
height: 200px;
width: 200px;
margin: 10px;
position: relative;
}
div::after {
content: "";
display: block;
background: #fff;
height: 100px;
width: 190px;
position: absolute;
top: 95px;
left: 5px;
rotate: 3deg;
box-shadow: 1px 10px 15px -5px #333;
z-index: -1;
}