0

enter image description here

i'm trying achive below table format in mat-table any references to impliment.

Naveen Asapu
  • 39
  • 1
  • 7
  • 1
    It sounds like you are looking for padding. Some discussion has happened on that https://stackoverflow.com/questions/50709363/editing-angular-materials-table-cell-padding – stayingcool Sep 27 '19 at 00:52
  • 2
    Also look at this [stackblitz](https://stackblitz.com/edit/angular-cjxcgt-wtkfg4) referenced from (stackoverflow)[https://stackoverflow.com/questions/53954603/why-am-i-unable-to-apply-a-border-to-an-angular-mat-table-row] – stayingcool Sep 27 '19 at 00:59

1 Answers1

1

Try this way:

   .mat-row {
     height: auto;
  }

  .mat-cell {
     padding: 6px 6px 6px 0;
  }
Bansi29
  • 1,053
  • 6
  • 24