Convert dropdown to selection boxes with color and trigger drop down action

后端 未结 5 1680
面向向阳花
面向向阳花 2020-11-30 15:50

Please help to convert this drop down to selection box with color like white box, black box etc [not check box] .

So that page is loading , instead of showi

5条回答
  •  有刺的猬
    2020-11-30 16:16

    Here is the CSS:

    select option[value="black"]{
       color:#fff;
        background: black;
    }
    
    select option[value="white"]{ 
    color:#000;
        background: white;
    }
    select option[value="red"]{
       color:#fff;
        background: red;
    }

    But, I suggest that you just add selected="selected" to only value="".

提交回复
热议问题