JSFiddle - React, Tailwind, and code Playground
by Ton Hanchai
CSS
<style>
select option { padding:5px 0px; }
</style>
<select>
<option> 1</option>
<option> 2</option>
<option> 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>