Is it possible to change the default background color of a select list option on hover?
HTML:
this is what you need, the child combinator:
select>option:hover { color: #1B517E; cursor: pointer; }
Try it, works perfect.
Here's the reference: http://www.w3schools.com/css/css_combinators.asp