JSFiddle - React, Tailwind, and code Playground

HTML

<div class="left">Left Div</div>
<div class="right">Following Div</div>

<p>Paragraph of text afterwards.</p>

CSS

div.left {
    float: left;
    outline: thin solid red;
    width: 200px;
}

div.right {
    display: inline-block;
    outline: thin solid blue;
    width: 150px;
}