Stuck on CSS Grid: Use Media Queries to Create Responsive Layouts

use-media-queries-to-create-responsive-layouts

i tried doing:

grid-template-areas:
“header”
“advert content”
“footer”;

but it says that’s wrong, and i can’t figure it out.

any help?

please refer here https://www.w3schools.com/css/css_rwd_mediaqueries.asp

Add your whole code and a link to the challenge for more help - next time you need help use the Ask for help button so that your code is automatically included

Remember it is a two column layout, so you have to make the header and footer “span” both columns.

"header header"
"footer footer"
1 Like

i wasn’t able to link the challenge, bc i’m a new user.

the answer that it’s 2 columns helped. i had forgotten that i needed a header for each column.

thanks