jaklitsch maya wrote: > I work alone so have decided to limit myself to these two browsers, > with the OS w2000. If anyone can check also with other browsers, and > OS thank you very much.
Opera, Firefox and other non-IE browsers render pretty identical on win. > http://www.quakercapecod.org/new/index.html > In ff the container does not start at 0 0 like in ie. Collapsing margin[1] from h1, specifically the default margin-top. IE doesn't have a default margin-top, so it has nothing that can collapse. Simplest solution, add: h1 {margin-top: 0;} > In ie the float nicely next to each other while in ff no matter what > I do it absolutly refuses. The main cause is that elements in the #content_sub have margins/paddings added to width, thus becomes wider than their container. That's how the W3C box model works. IE can't overflow, so it expands the container instead - a bug. Adjust those element-widths so they have enough space for margins/paddings _inside_ their container, and things will improve. --- You may also restyle main container so it gets the following properties:values in addition to / instead of existing styles... #content_main {width:640px; float: right; margin-left: -30px; padding: 7px;} That will keep #content_main in place across browser-land, regardless of the design-flaws in #content_sub. regards Georg [1]http://www.w3.org/TR/CSS21/box.html#collapsing-margins -- http://www.gunlaug.no ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
