I am unable to get the white space at the bottom of this page to disappear. I have both min-height and height tags in body. Any suggestions? Thanks!
|
show 2 more comments
feedback
|
|
The problem is how 100% height is being calculated. Two ways to deal with this. Add 20px to the body padding-bottom
or add a transparent border to body
Both worked for me in firebug In defense of this answerBelow are some comments regarding the correctness of my answer to this question. These kinds of discussions are exactly why stackoverflow is so great. Many different people have different opinions on how best to solve the problem. I've learned some incredible coding style that I would not have thought of myself. And I've been told that readers have learned something from my style from time to time. Social coding has really encouraged me to be a better programmer. Social coding can, at times, be disturbing. I hate it when I spend 30 minutes flushing out an answer with a jsfiddle and detailed explanation only to submit and find 10 other answers all saying the same thing in less detail. And the author accepts someone else's answer. How frustrating! I think that this has happend to my fellow contributors–in particular thirtydot. Thirtydot's answer is completely legit. The But why? Shouldn't the And it is! If you remove the padding-bottom style that I've suggested and then set the body's background to black, you will see that the body's height includes this extra The two solutions that I've offered are ways to tell the browser to calculate the gradient properly. In fact, the padding-bottom could just be 1px. The value isn't important, but the setting is. It makes the browser take a look at where the body ends. Setting the border will have the same effect. In my opinion, a padding setting of 20px looks the best for this page and that is why I answered it this way. It is addressing the problem of where the gradient starts. Now, if I were building this page. I would have avoided wrapping the script in a p tag. But I must assume that author of the page either can't change it or has a good reason for putting it in there. I don't know what that script does. Will it write something that needs a p tag? Again, I would avoid this practice and it is fine to question its presence, but also I accept that there are cases where it must be there. My hope in writing this "defense" is that the people who marked down this answer might consider that decision. My answer is thought out, purposeful, and relevant. The author thought so. However, in this social environment, I respect that you disagree and have a right to degrade my answer. I just hope that your choice is motivated by disagreement with my answer and not that author chose mine over yours. | |||||||||||
feedback
|
|
I find it quite remarkable that out of 6 answers, none of them have mentioned the real source of the problem. Collapsing margins on the last A sensible fix would be to add You could also just move the As an aside, you've broken the fix I gave you in this question: CSS3 gradient background with unwanted white space at bottom You need At the moment, you have
(This happens with a window taller than the content on the page) | |||||||
feedback
|
|
The problem is the background image on the EDIT: the CSS file says it is "generated" so I don't know exactly what you will be able to edit. The problem is this line:
I'm guessing you've put null as a value and it has set the background to a GIF called 'null'. | |||||
|
feedback
|
|
This will remove the margin and padding from your page elements, since there is a paragraph with a script inside that is causing an added margin. this way you should reset it and then you can style the other elements of your page, or you could give that paragraph an id and set margin to zero only for it.
Try to put this as the first style. | ||||
|
feedback
|
|
There is a second paragraph in your footer that contains a script. It is this that is causing the issue. | |||||||||||
feedback
|
|
It is happening Due to:
Remove | |||||||||||
feedback
|
Always works for me class or ID can be for a div or even body causing the white space. | |||
|
feedback
|

<p>tags around the<script>and others could not see any difference. You really should fix the root cause as described by @thirtydot and accept his answer instead. – Sparky672 Jun 24 '11 at 17:32