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

Try:

h1 {
    margin-top: 0;
}

You’re seeing the effects of margin collapsing.

Leave a Comment