css - How to remove this extra space in the tabPane in JavaFX? -
this space depends tab pane header ,you have way hide using css
.tab-header-background { -fx-background-color:transparent } .tab-pane{ -fx-padding: 0 -1 -1 0 }
this space depends tab pane header ,you have way hide using css
.tab-header-background { -fx-background-color:transparent } .tab-pane{ -fx-padding: 0 -1 -1 0 }
Comments
Post a Comment