views:

14

answers:

1

I remember IE will have some problems in layout when a comment is placed immediate after closing DIVs

E.g.

<div id='header'>



</div><!--/header-->

I forgot which version of IE will be affected, anyone can point me to the right direction for this bug?

Thanks.

A: 

It affects IE6 and is fixed in IE7, accoring to Position Is Everything.

(It's comments between floated elements that trigger the bug.)

RichieHindle