CSS Web Development wrote:
> List D;
> 
> I've put my CSS in this page: http://machalek.com/KC/ContactUs2.cfm
> 
> 
> It looks great in IE (strange, I know), but I don't know why it's not
> doing what I think it should do in Fire Fox.   (?)
> 
> 
> If someone can take a quick look, I would appreciate it.
> 
> Sincerely; KC


If you remove the height from div#innerTop FF begins to behave. You have 
a declared height for that element which FF will observe.


#innerTop{
        clear: both;
        height: 100px; /* delete */
        width: 100%;
        font-size: .85em;
}


In IE, the div#leftside clears the div#innerTop since both height and 
width are layout triggers. The floated left div#leftside can not cross a 
hasLayout boundary.

BTW, since you don't have a DOCTYPE, IE any version is in quirks mode. 
See more here about doctypes [1] which shows a table of doctypes at the 
base of the page.

1. <http://hsivonen.iki.fi/doctype/>


-- 
Alan http://css-class.com/

Armies Cannot Stop An Idea Whose Time Has Come. - Victor Hugo

http://www.wearechange.org/
______________________________________________________________________
css-discuss [[email protected]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to