我的问题是在标题中订阅。目前被否决的css部分是这样的:
.domain, .incident, .chzn-container-single .chzn-single {
font-family: sans-serif}
.domain {font-weight: bold}
在Firefox中显示正确,但遗憾的是在Chrome中没有。真的希望有人可以帮我找到一种方法来覆盖它。
答案 0 :(得分:0)
Chrome不允许为选项元素设置font-weight样式(参见调试屏幕截图) Firefox确实允许它。
http://fiddle.jshell.net/cN5A4/1/
option {font-weight: bold;}
如果你想拥有相同的样式,你需要求助于JS。例如https://github.com/fnagel/jquery-ui,它将select变成一个包含链接的列表,您可以将其设置为粗体链接...