JSFiddle - React, Tailwind, and code Playground

by Yuriy Petrichenko

HTML

<section>
  <div>
    1
  </div>
</section>

CSS

section{
height:200px;
width:200px;
background:red;
}

div{
  position:relative;
  left: calc(200px - 30px);
  height:30px;
  width:30px;
  background:green;
}