JSFiddle - React, Tailwind, and code Playground
HTML
<div id="yellow" class=" resizable">
WILL_NOT_LINE_BREAK will line break
</div>
CSS
#yellow {
width: 400px;
height: 50px;
background: yellow;
}
JavaScript
$(function () {
$(".resizable").resizable();
});