有没有办法只使用css来为表格视图的单元格着色?
答案 0 :(得分:1)
Cell
只包含任何值(即非{空的Cell
)可以使用filled
伪类来选择,例如使用以下样式表:
.table-cell:filled {
-fx-background-color: red;
}
.table-row-cell:selected>.table-cell:filled,
.table-cell:selected:filled {
-fx-background-color: purple;
}
但是,您无法仅使用CSS设置包含特定值的Cell
样式。