JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box"> <span class="title">Title on one line</span><br /> <span class="text">This is the main body of text which I want to wrap as required and have no effect on the width of the div.</span> </div>
CSS
.box { min-width:170px; } .box span.title { font-size:24px; white-space: nowrap; } .box span.text{ font-size:10px; white-space: normal; }
JavaScript
$(function() {
$(".box").width($(".title").width())
})