chris: tabellen ausrichtung ueber CSS

Beitrag lesen

Hallo,

habe das Problem das ich eine Tabelle mittig auf der Seite haben will, das ganze aber ueber CSS. Mittig sowohl vertikal als auch horizontal. Ist das ueber CSS moeglich oder was mach ich falsch?

<STYLE type="text/css">
BODY
{
 background: #666666;
 text-align: center;
 vertical-align: middle;
}

table
{
 height: 550px;
 width: 850px;
 border: 1px solid #000000;
 background: #FFFFcc;
 cursor: hand;
}
</STYLE>
</HEAD>
<BODY>
<table cellpadding="0" cellspacing="0">
  <tr>
    <td></td>
  </tr>
</table>
</BODY>