Problem Statement
When an element is set to display: grid, what happens to its children?
Explanation
When an element is set as a grid container, all its **direct children** become grid items that can be positioned within rows and columns defined by grid properties.
Code Solution
SolutionRead Only
.grid { display: grid; }