css - How to remove this extra space in the tabPane in JavaFX? -


this case right , remove it.

this space in tab pane next last tab option. using scenebuilder design app.

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 } 

the result is:remove space tabpane


Comments

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -