I want to style option
element, add my own hover
color instead of the default blue. I am able to change the background color, but not the hover effect. How can I change it?
My code
CSS:
select option {
background-color:red;
}
select option:hover {
color:black;
background-color: green !important;
}
HTML:
<div class="dropdown">
<select>
<option> 18 per page</option>
<option> 10 per page</option>
<option> 5 per page</option>
</select>
</div>