I have a problem with overlaying text on top of images in IE6.0.
I have the following HTML which works
<table width="95%" border=1>
<tr height="22" width="510">
<td>asd asd asd asd asd asd asd asd asd<SPAN STYLE="position:relative; top:-1px; left:-50px">overlayed text
</SPAN></td>
</tr>
</table>
It displays overlayed text on top of "asd...asd".
However, if I use an image instead of "asd...asd"
<table width="95%" border=1>
<tr height="22">
<td>
<img src="../Images/small_grey_square.gif" height=22 width=510><SPAN STYLE="position:relative; top:-10px; left:-500px">overlayed text </SPAN></td>
</tr>
</table>
where small_grey_square.gif is a 10 x 10 pixel image that is 'scretched' out to 510 x 22. Any text after the space in "overlayed text" is omitted.
How/Why is that and how could I solve it?
I have the following HTML which works
<table width="95%" border=1>
<tr height="22" width="510">
<td>asd asd asd asd asd asd asd asd asd<SPAN STYLE="position:relative; top:-1px; left:-50px">overlayed text
</SPAN></td>
</tr>
</table>
It displays overlayed text on top of "asd...asd".
However, if I use an image instead of "asd...asd"
<table width="95%" border=1>
<tr height="22">
<td>
<img src="../Images/small_grey_square.gif" height=22 width=510><SPAN STYLE="position:relative; top:-10px; left:-500px">overlayed text </SPAN></td>
</tr>
</table>
where small_grey_square.gif is a 10 x 10 pixel image that is 'scretched' out to 510 x 22. Any text after the space in "overlayed text" is omitted.
How/Why is that and how could I solve it?