JSFiddle - React, Tailwind, and code Playground

HTML

<div>
  <span>Lorem ipsum</span>
  <span>Lorem ipsum</span>
</div>

CSS

div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
span {
  background: #f00;
}