if I want to give margin padding or border radius on the dropdown of select tag. Its not working but its taking the font size and color property why I am not able to customize the option values
<select>
<option>one</option>
<option>two</option>
<option>three</option>
</select>
css code given below
select, option {
width: 250px;
}
option {
font-size:16px;
color:red;
padding:10px;
height:10px;
border-radius:10px;
}