JSFiddle - React, Tailwind, and code Playground
HTML
<form>
<div class="content">
<div class="blc">
<label>Input Label
<input type="text" placeholder="" />
</label>
</div>
<div class="blc">
<label>Input Label
<input type="text" placeholder="" />
</label>
</div>
<div class="blc">
<label>Input Label
<input type="text" placeholder="" />
</label>
</div>
</div>
</form>
CSS
form .content { width:100%; }
form .content .blc { position:relative;float:left;width:33.33333%; }
label { display:block; }
input[type="text"] { display:block; }