Hi Marc
In die div's eine 100% breite Tabelle schreiben und in die Tabellenzelle mit align="center" eine weitere Tabelle mit der gewuenschten Breite und Hoehe.
Also ungefaehr so:
<html>
<head>
<title>test10</title>
</head>
<body>
<div id="Nr1" style="position:absolute;top:50px;left:0px;z-index:100;">
<table width="100%">
<tr>
<td width="100%" height="150" align="center">
<table width="200" height="100" bgcolor="#336699">
<tr>
<td >
Inhalt
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<div id="Nr2" style="position:absolute;top:50px;left:0px;z-index:10;">
<table width="100%">
<tr>
<td width="100%" height="150" align="center">
<table width="400" height="150" bgcolor="#00ccff">
<tr>
<td align="right">
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</body>
</html>
Tschau Holger