JSFiddle - React, Tailwind, and code Playground

HTML

<div class= 'wrap'>
  <div><span>1234567890 1234567890</span></div>
</div>

CSS

.wrap{
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: red;
}

.wrap div {
  text-align: center;
}
span{
  background: green;
}