Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML

Why is my header like this?

Hello everyone!

I took some time to recap what I have learnt here and I thought about making a website about Bertrand Russell and I put that idea into code, but right now I have a problem. I can't remove that margin from my header.

Please, can you help me? Thank you! https://mega.co.nz/#F!C5VCxBaL!8bZsbkl_tVogeU_a1ln80Q

1 Answer

Hi Radu,

It is the margin you set on the h1 element, which is causing the header being pushed away from the top border of the browser view:

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

change it like so, to remove it:

h1 {
  font-size: 2em;
  margin: 0;
}

Hope this helped

Thank you for your answer!