垂直滚动条并固定为 headers 和 mat-table

Vertical scroll bar and fixed headers with mat-table

我想知道如何使用 Angular Material mat-table 仅显示行的垂直滚动条(headers 没有移动)。当我在 mat-table 样式中设置 overflow: auto 和 max-height 时,整个 table(包括 headers)都会滚动。 感谢您的帮助。

您可以使用 MatHeaderRowDef 的置顶贴 属性:

<tr mat-header-row *matHeaderRowDef="displayedColumns; sticky: true"></tr>