使用ngStyle将样式分配给tr:first-child td

时间:2015-12-08 12:26:47

标签: javascript html css angularjs html-table

我动态获取数据,因此它始终不同。 我使用.replacengStyle添加到表中,但是如何将名为td的第一个子项赋予样式?

我做了一个plunker,所以你可以尝试一下。

1 个答案:

答案 0 :(得分:0)

您可以使用ng-style有条件地添加一个类,类似这样的

<td ng-class="{'firstchild': 'someConditionGoesHere'}">Ali</td>

但要为第一个td添加样式,你必须坚持使用基本的CSS,如

.tableStyle td:first-child 

你可以另外做的是使用ng-style添加一个类'test'并具有css定义,如

.tableStyle td.firstchild:first-child {}

这些的混合对你有用。