Ng2-smart-table单细胞造型

时间:2017-12-28 11:36:48

标签: ng2-smart-table

我希望为单元格添加自定义着色。

尝试使用

`styles: [`    
    :host /deep/ ng2-smart-table tbody > tr > td:first-child {
    color: red;
    }
    `]`

但这会改变整个第一列的颜色

1 个答案:

答案 0 :(得分:4)

如果您想为第一个单元格着色,不仅要为第一列着色,还需要将first-child添加到tr

:host /deep/ ng2-smart-table tbody > tr:first-child > td:first-child {
  color: red;
  }