JSFiddle - React, Tailwind, and code Playground

HTML

<div class="one">
   1
</div>
<div class="two">
   2
</div>

CSS

div
{
  height:30px;
  width:30px;
  background:red;
  position:absolute;
  left:0px;
  top:0px;
}

.one
{
  transform:scale(2) translate(50px, 50px);
  background:red;
}

.two
{
  transform: translate(50px,50px) scale(2);
  background:blue;
}