Roha: Problem Elternelement im IE nimmt er td , im NS jedoch nicht

Beitrag lesen

Habe folgendes problem , möchte ein div in td einer tabelle plazieren , das div ist absolut positioniert ( geht nicht anders da sonst clip nicht mehr funktioniert ) das td aber relative . folgender codeabschnitt

<td id="tr2td2" style="position:relative;width:800; height:560;">
<div id="map" style="position:absolute; top:0px; left:0px; overflow:hidden; clip:rect(0px, 800px, 560px, 0px);" onDblClick="mapcordanwahl('tr1td1')">
<img src="a.gif" width="2000" height="2000" border="0" alt="map">
</div>
</td>

warum nimmt er mir im NS td nicht als elternelement ? bin für jegliche Hilfe dankbar , anbei unten noch gesmatcode der Seite .

//--------------------- CODE--------------------------------------
<html><head>

<script src="mapjs.js" type="text/javascript"></script>
<style type="text/css">
#box { position:absolute; top:50px; left:50px; width:150px; height:150px; z-index:1;background:red; border:solid 2px blue; }
</style>

</head><body>
<table id="maintable" style="table-layout:fixed; position:relative; border:none; top:10px ; left:100px; width:840; height:600;">

<tr id="tr1">
<td id="tr1td1" style="position:relative; width:20; height:20;"></td>
<td id="tr1td2" style="position:relative; width:800; height:20; ">
<img src="pfeilobengr.gif" width="800" height="10" border="0" alt="map" onMousedown="scrollenhoch('')" onMouseUp="scrollenhochstop('')">
</td>
<td id="tr1td3" style="position:relative; width:20; height:20;"></td>
</tr>

<tr id="tr2">
<td id="tr2td1" style="width:20; height:560;">
<img src="pfeillinksgr.gif" width="10" height="80" border="0" alt="map" onMousedown="scrollenlinks('')" onMouseUp="scrollenlinksstop('')">
</td>
<td id="tr2td2" style="position:relative; width:800; height:560;">
<div id="map" style="position:absolute; top:0px; left:0px; overflow:hidden; clip:rect(0px, 800px, 560px, 0px);" onDblClick="mapcordanwahl('tr1td1')">
<img src="a.gif" width="2000" height="2000" border="0" alt="map">
</div>
</td>
<td id="tr2td3" style="position:relative; width:20; height:560;">
<img src="pfeilrechtsgr.gif" width="10" height="80" border="0" alt="map" onMousedown="scrollenrechts('')" onMouseUp="scrollenrechtsstop('')">
</td>
</tr>

<tr id="tr3">
<td id="tr3td1" style="position:relative; width:20; height:20;"></td>
<td id="tr3td2" style="position:relative; width:800; height:20; ">
<img src="pfeiluntengr.gif" width="800" height="10" border="0" alt="map" onMousedown="scrollenrunter('')" onMouseUp="scrollenrunterstop('')">
</td>
<td id="tr3td3" style="position:relative; width:20; height:20;">
</td>
</tr>

</table>
</body></html>