答案 0 :(得分:1)
下面应该有效。取自here。
.combo-box .cell {
-fx-text-fill: white;
}
答案 1 :(得分:0)
如果您想要更改视觉,只需选择一个项目:
.combo-box > .cell {
-fx-text-fill: white;
}
答案 2 :(得分:0)
您可以尝试以下CSS样式:
.jfx-combo-box .cell {
-fx-text-fill: #FFF; /* change selected text (item) color */
-fx-background-color: #30425d; /* change background color */
}