JSFiddle - React, Tailwind, and code Playground

by Derek Wood

HTML

<div class="input-w">
    <label for="#your-input">Your label</label>
    <input type="text" id="your-input" />
</div>

CSS

.input-w label {
    display: inline-block;
    vertical-align: middle;    
}

.input-w input {
    display: inline-block;
    vertical-align: middle;
}



input {
    font-size: 2em;
}