您可以通过在列上使用 css 类来设置列宽
HTML
<clr-datagrid>
<clr-dg-column class="width1">a</clr-dg-column>
<clr-dg-column class="width2">b</clr-dg-column>
<clr-dg-column class="width3">b</clr-dg-column>
<clr-dg-column>b</clr-dg-column>
<clr-dg-row *ngFor="let i of [1,2,3,4,5]">
<clr-dg-cell >1</clr-dg-cell>
<clr-dg-cell >2</clr-dg-cell>
<clr-dg-cell >3</clr-dg-cell>
<clr-dg-cell>4</clr-dg-cell>
</clr-dg-row>
</clr-datagrid>
CSS
.width1 {
width: 15%;
}
.width2 {
width: 25%;
}
.width3 {
width: 35%;
}
更新
查看 StackBlitz 后,我突然想到,也许您可以只使用一个简单的表格。覆盖默认输入样式
td > input {
width: 1.5rem;
min-width: 1.5rem;
}
并使用标准表格元素
<table class="table">
<thead>
<tr>
<th></th>
<th>B</th>
<th>C</th>
<th>D</th>
<th>E</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let item of [1,2,3,4,5,6]">
<td>Type {{item}}</td>
<td><input type="number"></td>
<td><input type="number"></td>
<td><input type="number"></td>
<td><input type="number"></td>
</tr>
</tbody>
</table>
看起来它会在窄宽度的视口上塌陷。
这是您修改后的 StackBlitz:https ://stackblitz.com/edit/angular-dbzvmg