What I wanna do is to make a CSS grid with a dynamic number of cells. For the sake of simplicity, let\'s assume there will always be four cells per row. Can I specify a grid
Simply use below code to generate grid columns automatically
.container { display: grid; grid-auto-flow: column; }