Default text which won't be shown in drop-down list

后端 未结 8 1480
情话喂你
情话喂你 2020-11-28 02:17

I have a select which initially shows Select language until the user selects a language. When the user opens the select, I don\'t want it to show a

8条回答
  •  渐次进展
    2020-11-28 03:05

    Try this:

    In the CSS:

    .selectSelection option:first-child{
        display:none;
    }
    

提交回复
热议问题