JSFiddle - React, Tailwind, and code Playground

by Dmitry Morar

HTML

<div class="parent">
  <div class="child">cat</div>
</div>

CSS

.parent {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.child {  
  padding: 20px;
  background: #000;
  color: #fff;
}