JSFiddle - React, Tailwind, and code Playground
by genelocklin
HTML
<div class="box-front">
<div class="box-left"></div>
</div>
CSS
body { width: 600px; margin: 150px auto; background: #DFDAD0; }
.box-front {
background: #CEA767;
height: 250px;
width: 400px;
position: absolute;
top: 150px;
left: 300px;
}
.box-left {
background: #B18744;
height: 250px;
width: 250px;
position: relative;
top: 0;
left: -250px;
-webkit-transform: rotate(15deg) skew(15deg);
}