UNPKG
ipsos-components
Version:
latest (5.0.0-rc.3)
5.0.0-rc.3
Material Design components for Angular
github.com/angular/material2
ipsos-components
/
src
/
material-examples
/
grid-list-dynamic
/
grid-list-dynamic-example.html
10 lines
(9 loc)
•
251 B
HTML
View Raw
1
2
3
4
5
6
7
8
9
10
<
mat-grid-list
cols
=
"4"
rowHeight
=
"100px"
>
<
mat-grid-tile
*
ngFor
=
"let tile of tiles"
[
colspan
]=
"tile.cols"
[
rowspan
]=
"tile.rows"
[
style.background
]=
"tile.color"
>
{{tile.text}}
</
mat-grid-tile
>
</
mat-grid-list
>