我无法更改JavaFx css中tabPane顶部的颜色。图片中的详细信息
我试过
#myTabPane .tab-header-area{
-fx-background-color: white;
}
和
#myTabPane{
-fx-background-color: white;
}
但没有积极的结果。
答案 0 :(得分:1)
尝试设置tab-header-background
的背景颜色。例如:
.tab-pane>*.tab-header-area>*.tab-header-background
{
-fx-background-color: -fx-outer-border, -fx-text-box-border, white;
}