JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container">
    <div class="tile">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
        <div class="tile">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
        <div class="tile">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
        <div class="tile">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
        <div class="tile">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
    
</div>

CSS

body { text-align: center; }

#container { width: 66%; border: solid green 3px; display: inline-block; text-align: left; }

.tile { width: 100px; 
    border: solid red 3px;
    display: inline-block;
    margin: 8px;
}