Change select box option background color

后端 未结 10 956
挽巷
挽巷 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:33

    Yes, you can set this by the opposite way:

    select { /* desired background */ }
    option:not(:checked) { background: #fff; }
    

    Check it working bellow:

    select {
      margin: 50px;
      width: 300px;
      background: #ff0;
      color: #000;
    }
    
    option:not(:checked) {
      background-color: #fff;
    }

提交回复
热议问题