我希望为单元格添加自定义着色。
尝试使用
`styles: [`
:host /deep/ ng2-smart-table tbody > tr > td:first-child {
color: red;
}
`]`
但这会改变整个第一列的颜色
答案 0 :(得分:4)
如果您想为第一个单元格着色,不仅要为第一列着色,还需要将first-child
添加到tr
:
:host /deep/ ng2-smart-table tbody > tr:first-child > td:first-child {
color: red;
}