|
There is another way to combat this - 2 actually.
Float the content column left as well, but do NOT put a left margin on it. You are running afoul of IE6's busted box model, even with the padding IE gets it wrong.
If you float the right column, you'll have to use padding ON THE PARAGRAPH inside it to achieve some white space.
The other method is to NOT float the right column at all, but give the right column a left margin wide enough to push it past the left column, again using padding on the <p> inside it for white space.
The 'fix' for the doubled-float margin bug is to put set the left column to display: inline and put that rule in the CSS file Adam mentioned above, calling it with a conditional comment.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|