我使用了https://stackblitz.com/edit/angular-bklajw?file=app%2Ftable-basic-example.html。但height属性似乎不起作用。有没有一种方法可以自定义主标题和子标题的高度?
th.mat-header-cell, td.mat-cell {
text-align: center;
border: 1px solid #CCC;
padding: 0 !important;
height: 20px;
}
问题不在于<td>
元素,而在于<tr>
元素。只需添加以下内容:
tr.mat-header-row{
height: 20px !important;
}