Check the official mat-table link below.
https://material.angular.io/components/table/overview
IE 11 browser. Angular version 5
flexbox and min-height not working together in IE, you have 2 options:
.mat-header-row, .mat-row {
min-height: 0;
height: 48px;
}
.mat-table {
display: flex;
flex-direction: column;
}
Will be fixed by https://github.com/angular/material2/pull/6820.
Thank you.
I solved this problem with this style for IE. Work texts with badges.
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ CSS styles go here */
.mat-header-row, .mat-row {
-ms-flex-align: stretch;
}
}
This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
_This action has been performed automatically by a bot._
Most helpful comment
I solved this problem with this style for IE. Work texts with badges.