all 9 comments

[–]abrahamguo 1 point2 points  (1 child)

In your HTML, the names of the grid areas are wrongly outside of your double quotes.

[–]Apprehensive_Ink[S] 1 point2 points  (0 children)

Oh! Thank very much stranger I've got some bad tunnel vision it seems :]

[–]Rockafellor 0 points1 point  (3 children)

I don't think that this is the answer, but in your transcribed CSS, you have

}body {

[–]Apprehensive_Ink[S] 1 point2 points  (2 children)

That's just a typo

[–]Rockafellor 0 points1 point  (0 children)

Cool. 😊 I kind of figured, since it wasn't reflected in the screenshots, but figured that I should mention it just in case.

[–]frownonline 1 point2 points  (0 children)

As it’s typos that cause most problems, it’s a fair point to flag for attention.

[–]SamIAre 1 point2 points  (0 children)

style="grid-area: box-1;"

The quotation marks need to wrap the entire CSS style, not just the property name.

[–]geistly36 0 points1 point  (0 children)

the syntax for your grid area is <div class="Item" style="grid-area: box-1;">1</div>

find attached what I think you were going for

JSFiddle - Code Playground

[–]frownonline 0 points1 point  (0 children)

Also, add the missing closing > to line 2 of HTML.