CSS with Option tag - Editing text color

后端 未结 2 1753
栀梦
栀梦 2021-01-25 00:09

Is there any secret behind editing a option tag with css? I just can\'t solve this issue

2条回答
  •  萌比男神i
    2021-01-25 00:52

    I know this question is old, but there are some new developments in the world of CSS!

    color property on select will now set color of option(s) text (including selected), while adding / over-riding color to select option.

    CSS:

    select {
      color: white; /* color of selected option */
     }
    
    select option {
      color: black; /* color of other options */
    }
    

提交回复
热议问题