JSFiddle - React, Tailwind, and code Playground
HTML
<p class="break-all">
hello hello hello hello hello hello
</p>
<p class="break-word">
hello hello hello hello hello hello
</p>
CSS
.break-all {
width: 60px;
word-break: break-all;
}
.break-word {
width: 60px;
word-break: break-word;
}