I can style the list object itself using a class or id and I can also access the option elements within the list to style them. However, when I do something in CSS like
#my_dropdown option{
background-color: #FBCB2C;
margin: 50px 0;
}
The background colour of each list item is affected but the margin parameter has no effect. I notice that the list is of class 'select' but whatever I try I cant seem to change the distance between list items.
Basically I want the list item to be easier to use for mobile users and the current spacing between items seems too narrow.
Cheers