JSFiddle - React, Tailwind, and code Playground

HTML

<div class="center">
  <div>You text</div>
</div>

CSS

.center {
  height: 20px;
  background-color: blue;
}

.center>div {
  margin: auto;
  background-color: green;
  width: 200px;
}