Last few text from a para getting repeat in IE , can anyone have solution. Please check the below image.
I think you missed it CoryR - it's not that it's word-wrapping - quite literally Atluya is saying the content - which appears only once in the markup, is rendering twice on the page... I've seen this a good deal with CSS layouts. Strange as it sounds, html comments between block level elements, especially when floats are involved can cause all sorts of wierd layout behaviors in IE... The most famous of which are 'disappearing content' and 'double render'... From what I'm seeing you are definately encountering the latter. It's why I changed all my comments from this: </div><!-- #content --> to this: <!-- #content --></div> Moving the comment before the close (and not using one at the open) eliminates the bug... First try yanking all comments, then slowly add them back in... Though if you could post a link to the offending code we could all give you a much better diagnosis.