Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get rid of <select> highlight in IE

Trying to get rid of the blue highlight in IE. This is a select tag. When you pull down the dropbox and choose an option, the blue highlight appears. I am on a Mac and do not have IE so I cannot test it. Is it just background-color: transparent?

Here is an image of what I am seeing. http://postimg.org/image/xa8kmxfbt/

Thanks!

like image 891
user3657018 Avatar asked May 20 '14 14:05

user3657018


1 Answers

You can use:

select::-ms-value {background: transparent;}

This will change its colour once selected, but while selecting, you'll still see that blue colour on hover.

like image 89
Albzi Avatar answered Oct 24 '22 11:10

Albzi