Chrome/Firefoxではなく、IE6で必要なコードがあります。
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;
}