diff --git a/src/material/table/table.scss b/src/material/table/table.scss index e45134a8dae3..6a28481a9b25 100644 --- a/src/material/table/table.scss +++ b/src/material/table/table.scss @@ -145,3 +145,9 @@ mat-cell.mat-mdc-cell, mat-footer-cell.mat-mdc-footer-cell { align-self: stretch; } + +// MDC table last row within tbody set bottom border as none for header cell as other mat-mdc-cell +// bottom border are set as none, this will make consistent layout for table +.mat-mdc-table tbody .mdc-data-table__row:last-child .mat-mdc-header-cell { + border-bottom: none; +}