Problem Statement
In CSS Grid, numbering of grid lines starts from:
Explanation
Grid lines are numbered starting from 1 at the top-left corner horizontally and vertically. You can place items using these line numbers.
Code Solution
SolutionRead Only
.item { grid-column: 1 / 3; }