HTML Select DropDown list with multiple colours

前端 未结 4 1325
野趣味
野趣味 2020-12-20 13:40

Is it possible to have different colours for different items in the dropdown list?

For example:

Option 1 = green
Option 2 = blue
etc

4条回答
  •  情歌与酒
    2020-12-20 14:31

    CSS and HTML

    #option-1 {
      color: red;
    }
    #option-2 {
      color: green;
    }
    
    #option-3 {
      color: yellow;
    }
    
    #option-4 {
      color: blue;
    }

提交回复
热议问题