Thanks for clarifying your problem on my request. for this behavior I would suggest you to use min-widht
and max-widht
to make you table
cell looks similar on every screen, please use below CSS in your stackblitz
th.mat-header-cell,
td.mat-cell {
text-align: center;
border: 1px solid #ccc;
padding: 0 !important;
min-width: 100px;
max-width: 100px;
}
Also if you want to make first cell look smaller as it is serial numbers so change its min-width
and max-width
using first-child
th.mat-header-cell:first-child,
td.mat-cell:first-child{
min-width: 50px;
max-width: 50px;
}
To change only "total settlement amount" as you mentioned in your question then use some CLASS on those cell(th td
) and style it like above
.similar-cell-width{
min-width: 100px;
max-width: 100px;
width: 100px; /*solution as per your req it fix the table cell widht*/
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…