On this page, I used Firebug to change the name of the css question.
#question-header h2 {
background:lime;
margin-bottom:-1000px;
padding-bottom:1000px;
}
Here's what happened: (source: zastica.com )
There is a # div with the title of the question, which applies only to the top of the question ("I have a div ..."). The key has a large bottom padding and a large (negative) bottom box.
. , overflow: hidden .
: , :
html {
overflow-x: hidden;
}
#question-header h2 {
padding: 0 1500px;
margin: 0 -1500px;
}
html { overflow-x: hidden; } html { overflow-x: hidden; } - .