JSFiddle - React, Tailwind, and code Playground

by Dedi Wibisono

HTML

<div class="wrap">
  <div class="haha"></div>
</div>

CSS

.wrap{
 margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.haha{
  border:1px solid red;
  width:100px;
  height:150px;
}