如何在所有浏览器中加粗选择的第一个选项?

Mr.*_*T.K 6 html css html-select

我试图加粗选择框的第一个选项,但它只适用于Firefox,而不是其他浏览器(Chrome,IE).这是我试过的代码.

HTML

<select id="htmldisabled">
    <option class="bold">test1</option>
    <option>test2</option>
    <option>test3</option>
    <option>test4</option>
    <option>test5</option>
    <option>test6</option>
</select>
Run Code Online (Sandbox Code Playgroud)

CSS

.bold {
     font-weight:bold;   
}
Run Code Online (Sandbox Code Playgroud)

请参阅jsfiddle的演示.

ant*_*pug 2

#htmldisabled:first-child{
    font-weight:bold;
}
Run Code Online (Sandbox Code Playgroud)