If I add a stylesheet containing
.button {
-fx-font: 42px "Myriad Pro Bold";
-fx-alignment: center;
vertical-align: middle;
}
The text on my button is not centered vertically. According to the CSS reference guide there is no fx specific property for this.
My present workaround is to add a padding of
-fx-padding: 12 12 0 12;
.button {
-fx-font: 42px "Myriad Pro Bold";
-fx-alignment: center;
vertical-align: middle;
}
The text on my button is not centered vertically. According to the CSS reference guide there is no fx specific property for this.
My present workaround is to add a padding of
-fx-padding: 12 12 0 12;