|
Posted by Rik on 02/21/07 02:08
On Wed, 21 Feb 2007 00:54:58 +0100, Chris <nospam@btinternet.com> wrote:
> If you go to http://194.129.129.161/test.htm Can anyone tell me why my
> footer in my layout is not pushed down beneath the textual content div.
> The
> footer div in IE 7 and Firefox goes across the top of my text even though
> the div appears beneath the text div.
>
> This will form the basis of a database driven system so I will not know
> how
> big the text will be. I have posted link as it is little difficult to
> explain.
Because you have given the #content a height that's not big enough to hold
the text. The text overflows, the box will not grow according to the
specs, as it has a set height. Remove the height, and you're fine. I think
you meant to use min-height, then again, MSIE6 does not know min-height...
It treats height as min-height.
--
Rik Wasmus
[Back to original message]
|