我有一个表,其中列由服务器动态发送。表头和数据列不对齐。
如何让它们对齐?
<nz-table *ngIf="queryResults" #headerTable [nzData]="queryResults" [nzFrontPagination]="false"
[nzShowPagination]="false" [nzScroll]="{ y: '150px' }">
<thead>
<tr>
<th *ngFor="let c of queryCols">{{c}}</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let d of headerTable.data">
<td *ngFor="let c of queryCols">{{ d[c] }}</td>
</tr>
</tbody>
</nz-table>