JavaFX:如何在不增加容器(标签、按钮)大小的情况下增加文本大小?

时间:2021-05-19 17:00:40

I would like to simply have the text inside a Button to fill more of the Button or increase the font size in a button without increasing its size.

我想要的只是按钮中的文本来填充更多的按钮或增加按钮的字体大小而不增加它的大小。

I tried using negative padding but it does not give the desired result.

我试过用负填充物,但没有给出想要的结果。

1 个解决方案

#1


4  

You can simply remove the padding using the -fx-padding property:

您可以使用-fx-padding属性来删除:

.button {
    -fx-padding: 0;
    -fx-font-size: 20;
}

JavaFX:如何在不增加容器(标签、按钮)大小的情况下增加文本大小?

#1


4  

You can simply remove the padding using the -fx-padding property:

您可以使用-fx-padding属性来删除:

.button {
    -fx-padding: 0;
    -fx-font-size: 20;
}

JavaFX:如何在不增加容器(标签、按钮)大小的情况下增加文本大小?