JSFiddle - React, Tailwind, and code Playground

by easwee

HTML

<div>
    <label>Test label:</label>
    <select><option>Test</option></select>
</div>
<br />
<table>
    <tr>
        <td>    
            <label>Test label:</label>
            <select><option>Test</option></select>
        </td>
    </tr>
</table>

CSS

div {height:300px;background:#ccc;}
div * {vertical-align:middle;}

table {height:300px;background:green;}
table * {vertical-align:middle;}