tags:

views:

43

answers:

4

Hi,

I have unwanted space here between the last DIV tag and the BODY tag for some reason. I can't work out why. I don't want this extra space at all. I'd prefer if my DIV#footer was flush against the edge of the bottom of the browser. I've applied a bright highlight background-colour to the body tag so it's easier to see the issue.

The page validates for HTML and CSS.

Can anyone explain what's going on and how I might solve ?

Many thanks

+4  A: 

div#wrap has margin-bottom: 20px (styles.css:46). Removing that appears to fix it.

kevingessner
+1  A: 

div#wrap has a bottom-margin. Remove it and it will be ok.

Alexander
A: 

you have yourself given value of 20px at bottom

div#wrap { background-color:#FFFFFF; margin:0 auto *20*px; text-align:left; width:1000px; }

make it div#wrap { background-color:#FFFFFF; margin:0 auto 0; text-align:left; width:1000px; }

I hope it work fine now

Moksha
A: 

Not sure how I overlooked that ! Issue resolved. Thanks a lot

qpidity