Problem Statement
Explain the difference between explicit and implicit grids.
Explanation
An explicit grid is defined by properties like `grid-template-rows` and `grid-template-columns`. Any item outside this defined structure goes into the implicit grid, automatically created by the browser to hold overflow items. You can control their sizing using `grid-auto-rows` or `grid-auto-columns`.
Code Solution
SolutionRead Only
.grid { grid-template-columns: 200px 1fr; grid-auto-rows: 100px; }