JSFiddle - React, Tailwind, and code Playground

by Gabriele Petrioli

HTML

<form>
<select name="name1">
<option>value1</option>
<option>value2</option>
</select><br/>
<input type="text" name="id1"><br/>
<input type="text" name="id2">
</form>

CSS

input{
    width:195px;
    border:1px solid #ccc;
}
select{
    width:197px;
    border:1px solid #ccc;
}