-1

I would like to display a different color on hovering of the dropdown in a select option irrespective of the default blue color. Can it be possible using CSS?

Kara
  • 6,115
  • 16
  • 50
  • 57
Arun
  • 11

1 Answers1

0

You can use hover pseudo class for this purpose. like this

select:hover {
  background: #fff2a8;
}
Ahmar
  • 3,717
  • 2
  • 24
  • 42