auto-fill
auto-fit
Fills row with as many columns as can fill the row, including empty columns (?)
Fills row with existing columns and expands them to take up available space (?)
.parent {
.parent {
display: grid;
display: grid;
grid-template-columns:
grid-template-columns:
repeat(auto-fill,
repeat(auto-fit,
minmax(50px,1fr));
minmax(50px,1fr));
}
}