JSFiddle - React, Tailwind, and code Playground

by reeson46

HTML

Centering example:
<div id="container">
  <div id="content">
    1
  </div>
</div>

CSS

body {
  font: 36px Arial, sans-serif;
}

#container {
  color: white;
  background: #ffbd17;
  width: 400px;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#content {
  background: #06c;
}