Tim Zappe wrote:
I have a background image that does not display in FF, and I think it is
because my outer most div (#wrapper) is not getting any height. I looked at
all of my floats, and I think everything should be clearing correctly, but
apparently it isn't, because FF doesn't display it. Any ideas on what I have
done wrong? Any help would be awesome, thanks.
http://dev.tzappe.com/jud/
-Tim
--
www.tzappe.com <http://www.tzappe.com>
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
First of all, the div around the h1 actually isn't necessary. Try
attaching the id to the h1 itself.
The problem here is that you set an absolute height on div#page.
Browsers not named IE will take that height literally, and make div#page
(and div#wrapper) exactly the height specified, and allow the content to
spill out the bottom. I believe what you really want here is
min-height, not height. Either that, or change it so that the content
is not inside #page.
--
http://www.mozilla.org/products/firefox/ - Get Firefox!
http://www.mozilla.org/products/thunderbird/ - Reclaim Your Inbox!
Please avoid sending me Word or PowerPoint attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/