如何调整垫子台面的角度高度?我正在处理的表有列组(主标题和子标题)



我使用了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;
}

相关内容

  • 没有找到相关文章

最新更新