Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Body background gap in FF (fine in IE) Re: Body background gap in FF (fine in IE)

#58724
hizuka007
Member

instead of putting the shadow in the body{}, why not create another wrapper (far-outer-wrap)?
that will surely solves your problem.

it will look like this in html:

Code:

…….

AND BY THE WAY, the culprit of your problem is the HEIGHT: 100% inside body… look:

html, body {
background-color:#F4E1BB;
height:100%;
margin:0;
padding:0;
}

just remove it and your page will be happy… :)