flex flex flex **Flexbox ** Grid Layout
.grid {
display: grid;
grid-template-columns: repeat(auto-fill, 300px);
justify-content: center;
}
.grid>* {
flex-basis: 300px;
background: #fff;
text-align: center;
border: 1px solid #aaa;
}
0
1
2
3
4
5
6
7
8
9