CSS Grid spacing help

Hey Guys,

I am learning HTML and have been practicing for a few days with the CSS Grid. The only thing I am not understanding is why my header has some space between it as I would like it to touch the top of the page. What am I missing on this?

Thank you!

You need to 0 out your body tag.

Add the following to your body css

margin:0;
padding:0;

1 Like

Thank you for your help!