Skip to content

Instantly share code, notes, and snippets.

@thisiszoaib
Created June 6, 2020 08:17
Show Gist options
  • Select an option

  • Save thisiszoaib/16f6b741e223b7599549cfd7ad14c4c8 to your computer and use it in GitHub Desktop.

Select an option

Save thisiszoaib/16f6b741e223b7599549cfd7ad14c4c8 to your computer and use it in GitHub Desktop.
Card view 6
<div class="content" fxLayout="row wrap" fxLayoutGap="16px grid">
<div fxFlex="25%" fxFlex.xs="100%" fxFlex.sm="33%" *ngFor="let num of [1,2,3,4,5,6,7]">
<mat-card class="mat-elevation-z4" >
<mat-card-header>
<mat-card-title>Mountains {{num}}</mat-card-title>
</mat-card-header>
<img mat-card-image src="./../assets/images/mountains.jpg">
<mat-card-content>
<p>
The Himalayas is a mountain range in Asia.
</p>
</mat-card-content>
<mat-card-actions>
<button mat-button>LIKE</button>
<button mat-button>SHARE</button>
</mat-card-actions>
</mat-card>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment