MCQ
How do you make a responsive grid with CSS Grid?
Responsive Web Design
A Using grid-template-columns with repeat and minmax
B Using fixed pixel columns
C Using float grid systems
D Using table layouts
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)).