how to apply border to table in angular

Solutions on MaxInterview for how to apply border to table in angular by the best coders in the world

showing results for - "how to apply border to table in angular"
Claire
06 Jan 2020
1td.mat-cell {
2 /* row padding */
3 padding: 16px 0;
4 /* row border */
5 border-bottom: 1px solid #ffa600;
6 border-top: 1px solid #ffa600;
7}
8
9td.mat-cell:first-child {
10  /* row border */
11  border-left: 1px solid #ffa600;
12}
13
14td.mat-cell:last-child {
15  /* row border */
16  border-right: 1px solid #ffa600;
17}
18
19table {
20  /* row spacing / margin */
21  border-spacing: 0 8px !important;
22} 
23