How do I change the background colour of select::-ms-expand
when it's disabled?
select::-ms-expand{
background: #f60;
}
How do I change the background colour of select::-ms-expand
when it's disabled?
select::-ms-expand{
background: #f60;
}
Simply add
:disabled
before::-ms-expand
, like so: