Markus1982: center a table

Beitrag lesen

Ich habe versucht den Stylesheet so zu addaptieren:

html,body
{
 width: 100%;
 height: 100%;
 margin: 0;
 padding: 0;
}

html
{
 display: table;
}

body
{
 /*color: #FF9900*/;
 background-color: #808080;
 display: table-cell;
 vertical-align: middle;
 /*font-family: "Times New Roman", Times, serif;*/
}

h1
{
 font-size: 40px;
}

table
{
 margin: auto;
}

td
{
 border: 0;
 padding: 0;
 /*font-family: "Times New Roman", Times, serif;*/
 /*font-size: 16px;
}

Die Tabelle ist jedoch immer noch linksbündig und nicht zentriert.
(im Internet Explorer)

Ich hoffe du kannst mir nochmal helfen.
Danke.