Auto-flow auto/repeat()

Exampule 2
auto-flow

1
2
3
4
5
width: 300px
6
7
8
9
10
11
12
width: 150px
13
14
width: 200px
15
16

container {
       grid:auto-flow auto / repeat(5,auto);   /* [ row / column ] */
       grid-gap: 2px;
}

item {
       display: flex;
       justify-content: center;
       align-items: center;
       flex-direction: column;
}

next Grid Exanpule 3.html