Change select box option background color

后端 未结 10 916
挽巷
挽巷 2020-11-22 08:55

I have a select box and I\'m trying to change the background color of the options when the select box has been clicked and shows all the options.

10条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-22 09:32

    enter image description here

    Similar to some of the answers, but not really stated, is to add a class to the actual option tag and use css classes...this is currently working for me without issue on IE (see above ss).

    
    

    CSS:

    .greenColor{
        background-color: #33CC33;
    }
    .redColor{
        background-color: #E60000;
    }
    

提交回复
热议问题