font-weight : bold
不适用于 Internet Explorer 中 HTML SELECT 的选项,是否有任何其他方法可以在 HTML SELECT 的选项上指定粗体类型属性。
.test {
color:black !important;
font-weight:bold !important;
}
.test1 {
margin-left:10px !important;
}
<select ng-model="fields[filter.id]" style="width:200px;">
<option value="">--- Select ---</option>
<option class="test">zero</option>
<option class="test1">one</option>
</select>
这些 css 样式在 Firefox 中有效,但在 chrome 和 IE 中无效:(