JSFiddle - React, Tailwind, and code Playground
HTML
<div style='height:300px;'>
<div class="container">
<p>there is something in the air tonight baby oooh, sweeeet potato mush</p>
</div>
</div>
CSS
div.container
{
width:25%;
height:100% ;
float:right;
background-color: green;
}
div.container p
{
width:75%;
background-color: red;
word-wrap: break-all;
}