JSFiddle - React, Tailwind, and code Playground

by billyonecan

HTML

<div class="box">
    <input type="text" />   
</div>

<div class="box">
    <select>
        <option value="0">Hello World!</option>
    </select>
</div>

CSS

div.box {
    float: left;
    margin-right: 20px;
}

input, select {
    margin: 6px 0 10px 0;
    border: 1px solid #cccccc;
    padding: 10px;
}