I want to style all the options inside select tag. My markup is like this
<select>
<option>Milk</option>
<option>Eggs</option>
<option>Lettuce</option>
<option>Tomatoes</option>
<option>Cream of chicken soup</option>
<option>Butter</option>
</select>
Now I want to add padding for all options and also want to change the border color of the box when all the options can be seen at the time of click on select. So how can I do that? I have tried
select option {
padding: 20px 0px;
}
But its not working at all. Can someone tell me how to solve this? Any help and suggestions will be really appreciable. Thanks
Fiddle link is here