JSFiddle - React, Tailwind, and code Playground

by arondraper

HTML

<div id="text">
    <input type="text" name="name"/>
    <input type="text" name="email"/>
</div>

CSS

body{
   padding: 20px;   
}
div#text{
   width: 500px;
   padding: 10px;
   border: 1px solid #e8e8e8;    
}
div#text input{
   clear: right;            
}