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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -