JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<span>Lorem ipsum</span>
<span>Lorem ipsum</span>
</div>
CSS
div {
display: grid;
justify-content: space-between;
grid-template-columns: max-content max-content;
}
span {
background: #f00;
}