Problem Statement
What happens if you don’t specify grid-row or grid-column for items?
Explanation
When no explicit row/column placement is defined, the browser automatically places items in available cells following document order. This is called auto-placement.
Code Solution
SolutionRead Only
.grid { display: grid; grid-template-columns: 1fr 1fr; }