JSFiddle - React, Tailwind, and code Playground
by Daniel Tan
HTML
<div class="float">Float!</div>
<fieldset>
<legend>Fieldset!</legend>
</fieldset>
<fieldset class="clear">
<legend>Clearing fieldset!</legend>
</fieldset>
CSS
.float { float: right; background-color: red; height: 200px; }
.clear { clear: right; }