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: repeat(auto-fit, minmax(106px, max-content));
}
span {
background: #f00;
}