JSFiddle - React, Tailwind, and code Playground

by Ton Hanchai

CSS

<style>
select option { padding:5px 0px; }
</style>    
<select>
<option>&nbsp;1</option>
<option>&nbsp;2</option>
<option>&nbsp;3</option> 
</select>

<br/>
<br/>
option with no left padding:
<br/>

<style>
select option { padding:5px 0px; }
</style>    
<select>
<option>01</option>
<option>02</option>
<option>03</option> 
</select>