I have problem with CSS drop down menu which does not work in chrome on hover.
Expected Behavior: Hovering on any of list item should change the background color to what is set using CSS rules.
Actual behavior: Default color(blue) stays even after hovering on list item.
If i run the same code in Internet Explorer(IE 10,11) it is working absolutely fine but not in chrome.My chrome version is 47.
MyCode:
<style> option:hover {
background: #01A982;
}
</style>
<select>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
JsFiddle Link : https://jsfiddle.net/sandeepb/p7jz9g95/