JSFiddle - React, Tailwind, and code Playground
HTML
<div class="items">
<div class="item">1. маленький текст</div>
<div class="item">2. здесь чуть больше текста</div>
<div class="item">3. очень много текста, который переполянет весь блок</div>
</div>
CSS
.items {
display: flex;
flex-direction: column;
align-items: flex-start;
width: 300px;
background: blue;
}
.item {
padding:10px;
box-sizing: border-box;
color:#fff;
background: green;
max-width: 300px;
display: inline-block;
margin-bottom: 10px;
word-break: break-all;
}