JSFiddle - React, Tailwind, and code Playground

by cssGuy

HTML

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

CSS

#box {
    width: 50px;
    height: 50px;
    background-color: green;
    background-clip: content-box;
    padding: 20px;
    border: 20px solid red;
    outline: currentcolor solid 20px;
    margin: 60px;
    transform: rotate(140deg) translateZ(0); /*OR ADD translateZ(0) HACK*/
    :backface-visibility: hidden; /* FIXING JAGGED EDGES IN BLINK/WEBKIT */
}