trevor bayliss wrote: > Hi all, Thanks a lot for those pointers George and Alan, I have > implemented the solutions which work with Firefox but with IE the > #contentinright div is dropped down and doesn`t seem to clear the > #contentinleft div.
> http://216.219.94.105/about2.htm The #content div is expanding in IE/win as a result of the 'hasLayout' bug. That bug is unknown in other browsers, so they won't expand #content without being told. You have several choices: 1: remove _all_ styles on #content, and the entire element from the source-code. 2: delete only 'width: 720;' on #content - as that's the 'hasLayout' trigger. 3: change #content into a float and remove the test-border you have on it. The following... #content { width: 720px; float: left; } ...is all styles needed on that element. Any of the alternatives above will make it line up as in your screenshot, and the only differences relate to whether or not you really need #content for something, or not. regards Georg -- http://www.gunlaug.no ______________________________________________________________________ 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/