IE6 the last three characters in the div are repeated differently, where on the page? very strange

Hi, I basically have problems (in IE6) where the last three characters of a line of text in a div are repeated even further down the page, although they are only in HTML once.

http://www.disturbmedia.com/jason/test/ please look at the numbers in black, its always the last three characters that repeat, so weird.

I have never seen this before, is it only in IE6? Does anyone have any information ?! Very vaguely how this happens.

Thanks jason

+3
source share
2 answers

IE6 , ; .

, :


HTML:

<html><head></head><body>

<div style="float:left">
</div>

<div style="float:left">
</div>

<!-- Both comments must be here for bug -->
<!-- Both comments must be here for bug -->

<div style="float:left; width:100%">
Repeated characters
</div>

</body></html> 

: IE6,

+4

- HTML.

0

Source: https://habr.com/ru/post/1738483/


All Articles