JSFiddle - React, Tailwind, and code Playground

by Michael Prosser

HTML

<div class="float-right">FLOAT RIGHT</div><div class="float-left">FLOAT LEFT</div>

CSS

.float-right{
  float: right;
  width: 50%;
  height: 100px;
  background-color: pink;
}
.float-left{
  float: left;
  width: 50%;
  height: 100px;
  background-color: yellow;
}