RT Elad Shechter
🤓 Centering #CSS Grid which has a dynamic number of items in a row with a fixed size.
Using:
.grid-container{
display: grid;
justify-content: center;
grid-template-columns: repeat(auto-fit, 250px);
}
@CodePen:
https://codepen.io/elad2412/pen/VwPMwVK