У меня есть фрагмент кода, который работает так, как я хочу в IE6, но не в Chrome / Firefox:
В IE6 img отображается с абсолютной позицией относительно td, как я хотел / ожидал.В Firefix / Chrome img отображается относительно внешнего div.
<div>
<table>
<tr>
<td class="rel cell">
<img src="style/easypos_mobile/icons/pencil.png" class="icon" onclick="_onclick.newArticle_andraNr();"/>
</td>
</tr>
</table>
</div>
.rel
{
position: relative;
}
.icon
{
position: absolute;
top: 3px;
right: -23px;
}
.cell
{
width: 186px;
}