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

Popular posts from this blog

python - ValueError: empty vocabulary; perhaps the documents only contain stop words -

json - Zend error Connection -

javascript - Trigger mouseenter when an animated element touches mouse -