Problem Statement
What does the `gap` property control in a grid layout?
Explanation
`gap` (formerly grid-gap) defines the spacing between rows and columns inside the grid, without affecting the content of grid items.
Code Solution
SolutionRead Only
.grid { gap: 20px; }