JSFiddle - React, Tailwind, and code Playground

HTML

<div id="relative">relative</div>
<div id="static">static</div>

CSS

#relative {
  position:relative;
  transform:rotate(0deg);
  width:150px;
  height:150px;
  background:blue;
  color:white;
}
#static {
  width:150px;
  height:150px;
  margin-left:75px;
  margin-top:-25px;
  background:green;
  color:white;
  text-align:right;
  
  transform:rotate(0deg);
}