Answers for "how to apply border to table in angular"

0

how to apply border to table in angular

td.mat-cell {
 /* row padding */
 padding: 16px 0;
 /* row border */
 border-bottom: 1px solid #ffa600;
 border-top: 1px solid #ffa600;
}

td.mat-cell:first-child {
  /* row border */
  border-left: 1px solid #ffa600;
}

td.mat-cell:last-child {
  /* row border */
  border-right: 1px solid #ffa600;
}

table {
  /* row spacing / margin */
  border-spacing: 0 8px !important;
}
Posted by: Guest on November-01-2020

Code answers related to "how to apply border to table in angular"

Code answers related to "Javascript"

Browse Popular Code Answers by Language