Reputation: 12512
Is there a way to customize the highlight color, when a mouse rolls over options, in select drop-down menu? In IE and FF it appears royal blue. Can it be changed with CSS or jQuery?
<select class="mySelect">
<option value="1">White
<option value="2">Black
<option value="3">Red
</select>
Also, is it possible to change color of the current option background when the drop-down appears below?
Thanks.
Upvotes: 0
Views: 519
Reputation: 3795
It's extremely limited, if not impossible in IE. I've used the Uniform plugin for jQuery a few times for a cross-browser solution. You could also create a fake drop down menu with a list and some JS to handle the behaviour.
http://pixelmatrixdesign.com/uniform/
Upvotes: 1