Home › Forums › CSS › background image not in div.. › Re: background image not in div..
January 17, 2013 at 10:13 am
#121266
Member
This because that div either contains divs with no assigned height or are all floated and so it is collapsing.
You will need to add
#bottom {
clear:both;
height: xxpx;
}
amd
#footer {
height: xxpx;
}
There are other option but that would be the simplest way.