首页 > 问答 > 正文
P粉5783439942023-08-15 11:33:59
你有两个选择。
选项1:使用ngClass有条件地应用一个类
<tr *ngFor="let data of List | paginate : { itemsPerPage: 10, currentPage: p }; let last = last" [ngClass]="{ yourclass: last }">
选项2:在你的样式表中选择最后一个tr
tr:last-of-type { // 你的样式 }