Bug on CSS Grid: Divide the Grid into an Area Template

Hi!
I think I found a bug on CSS Grid: Divide the Grid into an Area Template. The instruction was to change the “advert” cell into empty cell. I removed “advert” and put (.) but it didn’t work and I cannot advance.

Original code:

.container{

“header header header”

“advert content content”

“footer footer footer”;

}

Instruction: make advert into empty cell

What I did:

.container{

“header header header”

“. content content”

“footer footer footer”;

}

Tried to address this to github (as recommended in e-mail from quincy@freecodecamp.org) and the ticket was closed right away n redirected here.

Please help so I can move forward.
Many thanks in advance!

remove the comments, the bug has already been found and there is a github issue already for this

1 Like

Thanks! Found the same issue posted few hours before mine.

I just came across this as well. Move the " grid-template-areas:" inside of the green comments. All fixed :slight_smile:

1 Like