RE: [css-d] Problem with floats and IE6

2005-08-26 Thread Bruno Girin
Jason, A simple way to do this is to float both the content and the menu bar and have the footer clear both: #menu { float:left; } #content { float:right; } #footer { clear:both; } This works in IE and all CSS2 compliant browsers. It also means it's very easy to swap content and menu

Re: [css-d] Problem with floats and IE6

2005-08-26 Thread Jason W.
On 8/26/05, Bruno Girin [EMAIL PROTECTED] wrote: Jason, A simple way to do this is to float both the content and the menu bar and have the footer clear both: #menu { float:left; } #content { float:right; } #footer { clear:both; } This works in IE and all CSS2 compliant