I have Table and I want to put it in the middle of the page. If I set align attribute to center, it works but I want to do that with CSS. Here is my CSS:
center vorder, td
{
border-color:Blue;
border-style:double;
color:#8A2BE2F;
margin-left:auto;
margin-left:auto;
margin-right:auto;
}
and this is my table code:
<table class="center vorder" >
<tr><td colspan="4">mittige Tabelle</td></tr>
<tr><td>Element 0 0</td><td>Element 0 1</td><td>Element 0 2</td><td>Element 0 3</td></tr>
<tr><td>Element 1 0</td><td>Element 1 1</td><td>Element 1 2</td><td>Element 1 3</td></tr>
<tr><td>Element 2 0</td><td>Element 2 1</td><td>Element 2 2</td><td>Element 2 3</td></tr>
</table>
Thank you for your help.