JavaFX CSS Reference Guide

    1. Button btn = new Button();
    2. btn.setStyle(
    3. "-fx-background-color: cadetblue;"+
    4. "-fx-background-radius: 20;"+
    5. "-fx-text-fill: antiquewhite;"+
    6. "-fx-font-family: 'Microsoft YaHei UI';"+
    7. "-fx-font-size: 50"
    8. );
    • 设置背景

    -fx-background-radius: 20;//设置圆角
    -fx-background-color: cadetblue;//背景颜色

    • 设置字体

    -fx-text-fill: antiquewhite;

    -fx-font-family: ‘Microsoft YaHei UI’;
    -fx-font-size: 50