JSFiddle - React, Tailwind, and code Playground

by nerdycap007

HTML

<div>
        <a href = ""></a>
    </div>

CSS

div {
        width: 100px;
        height: 100px;
        overflow: hidden;
    }
    
    div > a {
        display: block;
        height: 100%;
        background-color: red;
        transform-origin: top right;
        transform: skewX(45deg);
    }