MCQ
How do you make a responsive grid with CSS Grid?
Explanation
Using repeat() with minmax() creates responsive grids that automatically adjust the number of columns based on the available space, such as repeat(auto-fill, minmax(200px, 1fr)).