1

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

尝试使用

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

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

4

1 回答 1

4

如果要为第一个单元格着色,不仅要添加第一first-childtr

:host /deep/ ng2-smart-table tbody > tr:first-child > td:first-child {
  color: red;
  }
于 2017-12-28T13:34:30.447 回答