JSFiddle - React, Tailwind, and code Playground

by fparent

HTML

<select>
    <option>foo
    <option>bar
    <option>baz
</select>

CSS

select {
    height: 60px;        
    width: 250px;
    
    box-sizing: content-box;
    -moz-box-sizing:content-box;
    -webkit-box-sizing:content-box;
}