When you click on the drop-down menu, a blue color appears when hovered over. I want it to be red instead, but for some reason, it's not working in Chrome browser. Here is the CSS class that I have used:
option:checked {
box-shadow: 0 0 10px 100px #d4003c inset !important;
background-color:red;
}
It works in IE 11 but not in Chrome. Can anyone suggest a class to change the default color of the dropdown?