我如何为CSSf表列单元应用CSS

时间:2018-06-28 16:00:34

标签: css javafx

我想知道可以使用哪个CSS类为表格单元格列着色。 我想将列和单元格生成为Java代码。 我想要这样的东西:

."the class cell"
{
    -fx-background-color:black;
}

谢谢大家。

1 个答案:

答案 0 :(得分:0)

将样式类添加到TableColum。这会将样式类添加到此列的所有TableCell中:

column.getStyleClass().add("colored-column");
.table-cell.colored-column {
    -fx-background-color: black;
}