How can I remove space (margin) above HTML header?

odbhut.shei.chhele picture odbhut.shei.chhele · Jan 20, 2013 · Viewed 116.4k times · Source

I am creating a website.

I have written the HTML part and now I am writing the stylesheet. But there is always some space above my header. How can I remove it?

My HTML and CSS code is given below.

Answer

robertc picture robertc · Jan 20, 2013

Try:

h1 {
    margin-top: 0;
}

You're seeing the effects of margin collapsing.