JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div>First</div>
<div>Second</div>
<div>Third</div>
</div>
CSS
.container {
font-size: 0px;
letter-spacing: 0px;
word-spacing: 0px;
/* To make the text wrap */
width: 100px;
}
.container > div {
display: inline-block;
margin: 0px;
padding: 0px;
font-size: 15px;
letter-spacing: auto;
word-spacing: 2em;
}
div {
/* To show of the divs */
border: solid 1px black;
}