Applying typography

There are multiple ways to apply typography. One way is to leverage the mat-typography class and use the corresponding HTML tag like <h2>:

src/app/app.component.ts  
<mat-card-header class="mat-typography">
<mat-card-title><h2>Current Weather</h2></mat-card-title>
</mat-card-header>

Another way is to apply the specific typography directly on an element, like class="mat-title":

src/app/app.component.ts  
<mat-card-title><div class="mat-title">Current Weather</div></mat-card-title>
Note that class="mat-title" can be applied to div, span or an h2 with the same results.

As a general rule of thumb, it is usually a better idea to implement the more specific and localized option, which is the second implementation.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.145.96.86