JSFiddle - React, Tailwind, and code Playground
by daneden
HTML
<div></div>
CSS
div {
margin: 100px auto;
width: 40px;
height: 40px;
position: absolute;
background: blue;
}
div:after {
content:'';
display: block;
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
background:red;
-webkit-transform: translate(-200px);
}