[css-d] Problem with float: left and IE

2005-12-09 Thread Mike Thirlwell (CBJ Digital Ltd)
Hi there, I have a problem with a quite complex layout that (of course) works in FF but (also of course) not in IE. A test case is at: http://www.bigjelly.com/css/test.htm Which demonstrates the problem in a simplified layout. The content is floated left, so that all content that appears

Re: [css-d] Problem with float: left and IE

2005-12-09 Thread Michiel van der Blonk
Hi I think the problem is the width. I tried setting the width of the sidebar boxes to 30% and they jumped right into place. Then again, maybe you really need them to be 250px. Michiel Mike Thirlwell (CBJ Digital Ltd) wrote: Hi there, I have a problem with a quite complex layout that (of

Re: [css-d] Problem with float: left and IE

2005-12-09 Thread Michiel van der Blonk
Found another solution: #content { display:inline} /* this fixes the double margin bug */ #sidebar1, #sidebar2 {width:auto} Michiel Mike Thirlwell (CBJ Digital Ltd) wrote: Hi there, I have a problem with a quite complex layout that (of course) works in FF but (also of course) not in IE. A