JSFiddle - React, Tailwind, and code Playground

HTML

<div class="wrapper">
    <div>ttttt ttttttttt</div>
    <div>ttttttttt ttttttttttt</div>
    <div>ttttttttttttt tttttttt</div>
</div>

CSS

.wrapper{
    overflow: hidden;
}
.wrapper div{
    float: left;
    max-width: 80px;
    color: #000;
    background: #ccc;
    font-size: 16px;
}
.wrapper div + div{
    margin-left: 10px;
}