↑下の行を左寄せにしたい
display: grid;
display: flex;ではなくdisplay: grid;にする
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, 80px);
justify-content: center;
max-width: 400px;
grid-gap: 30px;
background: #f2f2f2;
padding: 8px;
}
↑下の行を左寄せにしたい
display: flex;ではなくdisplay: grid;にする
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, 80px);
justify-content: center;
max-width: 400px;
grid-gap: 30px;
background: #f2f2f2;
padding: 8px;
}