JSFiddle - React, Tailwind, and code Playground
HTML
<form>
<select name="test">
<option name="option1">I have border-radius in Webkit</option>
</select>
</form>
CSS
form {
margin: 20px;
}
select, input, textarea {
width: 280px;
height: 35px;
padding: 5px 20px 0px 20px;
margin: 0 0 20px 0;
background-color: #E6EEEA;
font-family: arial; font-size: 16px;
color: #807987;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
border-radius: 20px;
}
}