JSFiddle - React, Tailwind, and code Playground

HTML

<span class="align-left">this shows to the left</span><span class="align-right">this to the right</span>

CSS

.align-left {
   float: left;
   width: 49%;
   }
.align-right {
   float: right;
   width: 49%;
   }