简体   繁体   中英

Angular 4 angular material custom mat-tab

how can I customize the title with the bold

 <mat-card-content>
    <mat-tab-group>
      <mat-tab label="Item1" > </mat-tab>
      <mat-tab label="Item2" ></mat-tab>         
    </mat-tab-group>
  </mat-card-content>

Item1 and Item2 must be bold

You can write CSS for mat-tab-label class. Please Inspect the elements and get the Idea so you can write the proper CSS.

.mat-tab-label{
    font-weight: bold;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM