JSFiddle - React, Tailwind, and code Playground

by edelman

HTML

<div id="box"></div>

SCSS

#box{
    width: 200px; 
    height: 200px;
    left: 100px;
    top: 100px;
    
    background:blue; 
    position: absolute;
    -moz-transform: rotate(10deg); -webkit-transform: rotate(10deg); transform: rotate(10deg);
    z-index: 10!important;
    &:after{
        content: "";
        width: 100px;
        background: orange;
        height: 100px;
        position: absolute;
        left: 120px;
        top: 120px;
        z-index: -2!important;
    }
}