如何删除 angular 中 mat-table 行之间的线?

How does one remove the lines between rows of a mat-table in angular?

请在这里查看我的网站:

http://35.232.230.0:81

这显示了 angular 应用程序中的 mat-table。我想删除 table 行之间的白线。如何做到这一点?

谢谢。

mat-cell 和 mat-h​​eader-cell 有边框。只需为这些元素设置边框 none。

.mat-cell, .mat-header-cell {
  border: none !important;
}
   td.mat-cell {
        border-bottom-style: none;
      }

或者

table-container{
      td.mat-cell {
        border-bottom-style: none;
      }
    }