JSFiddle - React, Tailwind, and code Playground
HTML
<div class="resizable">
Here is some text with some long words sep­arated into parts by soft hy­phen charac­ters.
Elong­ated para­phene­lia and the likes.
Pull the tiny draggy thing, bottom right, to resize.
</div>
CSS
.resizable {
resize: both;
overflow: auto;
display: inline-block;
width: 400px;
background: #9999dd;
font-size: 2em;
font-family: Helvetica, Arial, sans-serif;
color: #f3f3f3;
font-weight: bold;
padding: 15px 20px;
}