Michael Hulse wrote:
> If you read that Sitepoint post about floats you should be able to 
> tackle the float-drop issue with ease.

Comment: floats don't drop in IE/win in a fixed-width layout, *unless*
some of the content pushes a float outwards so it becomes too wide.
That's one of IE/win's weaknesses, but it is not an issue in that page,
once it is made an all-float layout (like I suggested).

The negative 'margin-right: -10px' will catch the /italic-bug/ and a few
other surprises IE/win may throw in just for fun :-)

Original source-code and CSS, and this CSS added:

#wrapper {display: table;}
#content {float: left; margin: 0 -10px 0 15px;}

...makes it an all-float.

Note to Trish: Moz/FF shows a minor deviation - 1px off (gosh).
Changing the margin will cover up for that:

#content {float: left; margin: 0 -10px 0 14px;}

...now tested fully in Moz/FF, Opera and IE6.

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/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to