Forum Moderators: not2easy
The following works fine in Firefox but not in IE6. A small value (less than about 10px) shifts down the span. Hard to explain, but see the example. Can anyone suggest a workaround - or spot the problem.
Bob
<HTML>
<HEAD>
<TITLE></TITLE>
<STYLE type="text/css">
.bar { background-color:green; width:30px;margin-left:5; float:left}
</STYLE>
</HEAD>
<BODY>
<DIV>
<SPAN STYLE="height:135px; margin-top:165; " CLASS="bar"></SPAN>
<SPAN STYLE="height:200px; margin-top:100; " CLASS="bar"></SPAN>
<SPAN STYLE="height:1px; margin-top:299; " CLASS="bar"></SPAN>
<SPAN STYLE="height:135px; margin-top:165; " CLASS="bar"></SPAN>
</DIV>
</BODY></HTML>