Daniel Talsky wrote: > This is an IE6 float problem. Works in everything else under the sun > (FF 2.x, IE7, Opera, Safari, etc.) but the floats don't sit side by > side in IE6. I assume this is some kind of auto-expand issue but > nothing I've tried has been able to fix it. I should have started > testing in IE6 much earlier.
It's useful to test in IE6 from the very beginning, but don't design for/in it. Oh, and yes, the 'auto expanding' is at play, along with the 'hasLayout' bug. IE6 handles all-floats - without margins and with restricted width, a lot better. > http://dev.laurelhurstoil.com/index.html Adding the following after all existing styles... * html #main, * html #sidebar-container, * html #sidebar-alpha, * html #sidebar-beta { overflow-x: hidden; margin: 0; float: left; } * html #sidebar-alpha, * html #sidebar-beta { float: right; } ...will make IE6 (and even some older versions) handle that page quite well. regards Georg -- http://www.gunlaug.no ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- 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/
