JSFiddle - React, Tailwind, and code Playground

by Reusablecode

HTML

<div class="leftHalf">
<p>I will fill up the left half of the available space, no matter what the screen size.</p>
</div>
<div class="rightHalf">
<p>I will fill up the right half of the available space, no matter what the screen size.</p>
</div>

CSS

.leftHalf{ width: 50%; float: left}
.rightHalf{ width: 50%; float: left }