Highlighting certain dates in mat-calendar

前端 未结 3 1643
眼角桃花
眼角桃花 2021-02-05 21:33

I am using mat-calendar. I am trying to highlight certain dates but I couldn\'t do it. There is no proper documentation for this.

HTML

3条回答
  •  孤街浪徒
    2021-02-05 22:15

    Complementing Fabian's answer, if you have problem seeing the highlighted color and you are using lazy loading components, remember to add the ::ng-deep in front of the class. Like this:

    ::ng-deep.special-date {
       background-color: red;
    }
    

    Cheers!

提交回复
热议问题