jca: Unterelement in zentriertem Element positionieren

Beitrag lesen

Vielen Dank erstmal. Mit margin-left:auto usw. habe ich nix zentriert bekommen. Hier mal ein Code zum Testen:

<html>
<head></head>
<body>
<!-- anstatt position:absolute habe ich hier auch schon relativ usw. probiert -> wird nicht zentriert -->
<div style="position:absolute; margin-left:auto; margin-right:auto;">

<img style="position:absolute; top:0px; left:0px; z-index:1;" src="http://www.google.de/intl/de_de/images/logo.gif">
 <table style="background:blue; color:black; width:600px; height:600">
  <tr>
   <td> cell1</td> <td>cell2</td>
  </tr>
 </table>

</div>
</body>
</html>