I am using Nz-Zorro ie; ng-antd to design table. Here I am dynamically calling the table header.
I have 4 columns and I want reduce the width of 2 columns by its name. How can I do that ?
<thead>
<tr>
<th *ngFor="let column of listOfColumns">
{{ column.name }}
</th>
</tr>
</thead>