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.
我正在尝试从 jfxtras (javafx) 操作议程中的字体。
我有一个链接到它的css文件。
我也想出了如何使它变黑和加粗。
.AgendaText { -fx-text-fill: BLACK; -fx-font-weight: bold; }
但我不知道如何将字体更改为 Arial。
谢谢,
浏览器将尝试采用第一种字体,第二种字体,如果它无法找到它,它将提供无衬线系统字体
.AgendaText { font-family: arial, helvetica, sans-serif }