我想使用CSS更改TextArea的背景颜色。我正在使用这一行:
CM_Init
问题是TextArea仅在焦点处显示此颜色。我知道TextAreas由几个不同的节点组成。我是否必须改变另一个以保持颜色?
答案 0 :(得分:0)
-fx-control-inner-background
是在JavaFX默认样式文件中创建的通用css样式,用于为text boxes
,password boxes
,lists
,trees
等内部着色。
最好使用以下css,仅为TextArea
.text-area .content {
-fx-background-color: #00FF99;
}
答案 1 :(得分:0)
好的,我玩了所有的CSS标签,这是有用的:
-fx-base: #00FF99;
-fx-control-inner-background: #00FF99;
似乎-fx-base
更改了TextArea的实际背景颜色,-fx-control-inner-background
在选中时更改了TextArea的颜色。