我有一段代码可以在 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;
}