JSFiddle - React, Tailwind, and code Playground

by j08691

HTML

<div id="main">
  <h1 id="center"> TEST </h1>
</div>

CSS

#main {
  background-color: rgb(255, 84, 0);
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
  margin-top: auto;
  overflow: auto;
  height: 100%;
  color: rgb(255, 255, 255);
}

#center {
  text-align: center;
}