Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In this test page, the element has a strange extra amount of space on the top:

http://dl.dropbox.com/u/3085200/canvasTest/index.html

I tried putting margin, padding, top all to 0 for body, and padding to 0 for html, but none of it helped.

html
{
    padding:0px;
}
body
{
    margin:0px;
    padding:0px;
    top:0px;
}
share|improve this question
2  
Welcome to Margin Collapsing, enjoy your stay. – zzzzBov Sep 28 '11 at 20:38
It seems the only benefit of this is wasting man hours debugging margin issues. Oh wait that's a drawback. -_- – Razor Storm Sep 28 '11 at 20:39
3  
most developers whom I've met, who dislike CSS, dislike it without understanding why the box model is the way it is. Also, most have never read the spec. It's not that hard, and definitely not a waste of your time. – zzzzBov Sep 28 '11 at 20:44
I don't dislike CSS, I actually enjoy most of its decisions. I just couldn't understand the logic behind this one. =] The problem, is due to inconsistent implementations by different browsers, but, that is a problem with all standards. – Razor Storm Sep 28 '11 at 21:08

4 Answers

up vote 6 down vote accepted

Try this in css:

h1 {
    margin-top: 0;
}
share|improve this answer

I believe this is actually caused by the margin on your h1 element.

share|improve this answer

You <h1> has default margin-top added to it, so it's pushing the <body> down from the top of the window.

body > h1:first-child { margin-top: 0; }
share|improve this answer

My console is showing a 0.67em top margin on the <h1> surrounding your top element.

Try this...

h1 {
    margin: 0;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.