Just want your confirmation that when assigning grid lines to grid-area property, the following is correct as stated in the tutorial under " CSS Grid: Use grid-area Without Creating an Areas Template".
grid-area: horizontal line to start at / vertical line to start at / horizontal line to end at / vertical line to end at;
It seems to me that it should be grid-area: vertical start / horizontal start / vertical end / horizontal end;
Maybe they chose the words vertical and horizontal here
grid-area: horizontal line to start at / vertical line to start at / horizontal line to end at / vertical line to end at;
so it was consistent with the instructions for the challenge.
Using the grid-area property, place the element with item5 class between the third and fourth horizontal lines and between the first and fourth vertical lines.
But I guess it could be rewritten like this grid-row-start / grid-column-start / grid-row-end / grid-column-end
Using the grid-area property, place the element with item5 class between the third and fourth rows and between the first and fourth columns.
I think I misunderstood because I tend to use multiple reference sites, and the other sites might have used different words to describe them. If the grid line concept was introduced using horizontal and vertical lines, I think it should be fine.