3

I am using IE9 and can't remove the blue background when a select dropdown is focused. When an item is selected from any of the drop downs the element is overlaid with a blue box. It doesn’t occur on Chrome or Firefox.

This code removes it for IE10 and Edge

select::-ms-value {
    background: none; /* remove blue background on ie10/ie11 when selected*/
    color:#5a5a5a;

}
user2016193
  • 107
  • 1
  • 5
  • 11

1 Answers1

7

I had the same problem and I resolved it using this:

select:focus::-ms-value {
      background-color: white; 
      color:#000;
}

I hope this helps.

Facyo Kouch
  • 727
  • 8
  • 24