CSS Font-Family Support Dropped for <SELECT> in Firefox?

匿名 (未验证) 提交于 2019-12-03 00:54:02

问题:

The following CSS used to work in all browsers that I have tested. It even has an option selector to handle Firefox.

select, option {   font-family: "Lucida Console", Monaco, monospace; } 

The newest versions of Firefox no longer properly apply font family styles. Former versions of Firefox, and every other major browser I've tested, fully apply the font family settings both to the select and to the items in the dropdown - now, it only gets applied to the select box itself, but NOT the dropdown.

Does Firefox still support font-family changes to dropdowns? If so, how?

http://jsfiddle.net/uqt64rfr/

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!