How to bold the first option of a select across all browsers?

后端 未结 4 705
小蘑菇
小蘑菇 2021-01-18 07:38

I have tried to bold the first option of the select box but it\'s only working in Firefox, not other browsers (Chrome, IE). Here is the code I\'ve tried.

HTML

<
4条回答
  •  长发绾君心
    2021-01-18 08:07

    To my knowledge it doesnt work in IE unless you style the select tag:

    select{
        font-weight:bold;
    }
    

    However this will influence all options. I dont know of another css-only solution, but would be interested in one as-well :)

提交回复
热议问题