I am facing issue in angular 2 material grid list with cards.
I want to display cards inside grid list but it is not responsive
Here is the code:
<md-grid-list cols="4">
<md-grid-tile *ngFor="let card of cards">
<md-card>
<img md-card-image src="{{card.image}}">
<md-card-content>
{{card.content}}
</md-card-content>
</md-card>
</md-grid-tile>
</md-grid-list>