是否可以在css中设置不可编辑文本字段的外观?我希望不可编辑的文本字段看起来像标签。我找不到这个(或类似的)问题的答案,我试过这个:
.text-input:editable {
-fx-background-color: transparent;
}
但这显然不起作用。
答案 0 :(得分:5)
.text-input:readonly {
-fx-background-color: transparent;
}
在提问之前应该检查JavaFX CSS reference!