java - How to change font on css? -
i'm trying manipulate font in agenda jfxtras (javafx).
i have css file linked it.
i figured out how make black , bold well.
.agendatext { -fx-text-fill: black; -fx-font-weight: bold; }
but don't know how change font say, arial.
thanks,
browser try take first font, second font , if wont able find it serve sans serif system font
.agendatext { font-family: arial, helvetica, sans-serif }
Comments
Post a Comment