Hi folks,

Is this a known bug? I've got a colleague who has a series of DIVs as
follows:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>


<div class="main">

<div class="aa">
aa
</div><!--aa close-->

<div class="bb">
bb
</div><!--bb close-->

<div class="ff">
ff
</div><!--ff close-->

<div class="wrap">

<div class="cc">
cc
</div><!--cc close-->

<div class="dd">
dd
</div><!--dd close-->


<div class="ee">
<p>This is an entire sentence, captain. Please have a safe flight.</p>
</div><!--ee close-->

</div><!--wrap end-->

</div><!--main container-->

</body>

</html>

And this CSS:

*
{
margin:0;
padding: 0px;
}

body
{
margin: auto;
}


.aa
{
width: 700px;
height: 80px;
background-color: red;
float: left;
}

.bb
{
width: 80px;
height: 720px;
background-color: blue;
float: right;
}

.cc
{
width: 50%;
height: 100%;
background-color: green;
float: right;
}

.dd
{
width: 50%;
height: 50%;
background-color: yellow;
float: left;
}

.ee
{
width: 50%;
height: 50%;
background-color: purple;
float: left;
}

.ff
{
width: 80px;
height: 720px;
background-color: orange;
float: left;
}

.gg
{
width: 700px;
height: 80px;
background-color: grey;
}

.main
{
width: 780px;
height: 800px;
background-color: pink;
text-align: center;
margin: auto;
}

.wrap
{
width: 620px;
height: 640px;
float:right
}

Looking in IE6, it replicates the last two characters of the sentence in DIV
class ee. Any ideas?
______________________________________________________________________
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