我动态获取数据,因此它始终不同。
我使用.replace
将ngStyle
添加到表中,但是如何将名为td的第一个子项赋予样式?
我做了一个plunker,所以你可以尝试一下。
答案 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 {}
这些的混合对你有用。