2

I have been attempting to make an Angular Mat table and I have it working, but I cannot figure out how to customize the header row. I need to change the background color and text color. I cannot figure out how to do it. Any help? Thanks!

Kevin Wilde
  • 81
  • 2
  • 9

1 Answers1

2

In your css file,

th.mat-header-cell {
  color: red;
  background-color: black;
}
BatshevaRich
  • 550
  • 7
  • 19