JSFiddle - React, Tailwind, and code Playground

by HDL52

HTML

<div id="parent">
    <div id="child"></div>
</div>

CSS

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

#child {
  background-color: red;
  padding: 50px;
}