Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Gluon GListen 下呈现的 ToggleButton 似乎至少有 50px 宽,普通的 ToggleButtons 不会显示这种行为并且呈现得更窄。我也找不到使用哪个 CSS 来使 GLuon 变窄...将填充设置为 0 仅适用于高度
除了-fx-padding,还为所有按钮指定了最小宽度。您可以指定-fx-min-width值为 0 以让按钮缩小到其内容的宽度:
-fx-padding
-fx-min-width
.toggle-button { -fx-min-width: 0; }