Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jQuery 的插件“jMenu”。我无法使用 CSS 更改字体系列:/。我有这个CSS:
.jMenu{ position : absolute; top : 80px; left : 0px; width : 100%; display:table; margin:0; padding:0; list-style:none; font-family : Tahoma; }
请问你有什么想法吗?谢谢
您需要添加!important强制css应用自定义字体。
!important
css
font-family : Tahoma !important;
font-family: Arial,Liberation Sans,DejaVu Sans,sans-serif;
这是stackoverflow的font-family,也许你应该检查你使用的字体~~~~~