JSFiddle - React, Tailwind, and code Playground

by kangismet

HTML

<div class='container'>
  <div class='merah'>
    Text Center
   </div>
</div>

CSS

.container{
  width:300px;
  height:200px;
  background:yellow;
  position:relative;
}
.merah{
  width:100px;
  height:100px;
  background:red;
  text-align:center;
}