Ciao ragazzi !

Allora vi espongo subito il problema .
Ho creato una tabella HTML,ho inserito align="center" e tutto ok .
Fino a che non dovevo arrotondare i bordi della tabella,ho dovuto aggiungere un file .css (non intendendomi di CSS mi sono affidato ad un testo trovato su qualche forum)
dal momento che l'ho aggiunto,non riesco in nessun modo a centrare sta tabella !! Ho provato tutte le soluzioni ma davvero non so dove sbattere la testa

questi i codici :
<html>
<head> <link rel="stylesheet" type="text/css" href="css.css" media="screen" />
<h1 Tabella </h1> </head>
<title> Tabelle prova </title>
<body bgcolor="green">
<p align="center"> <h1> Tabelle</h1>

<table border=2 align="center" width=800 height=800 bgcolor="yellow" id="tabella"> <!-- testo -->
<tr>
<td>


</td>
</tr>
</table>

</div>


</html>
e CSS

#tabella {
border:1px solid #a2a3a2;
background:yellow;
border-radius:5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-khtml-border-radius:5px;margin:10px;
padding:2px;}
<!– codice stile intestazione tabella –>
#tabella th {background:color:#fff;padding: 6px;font-size:20px;font-weight:normal;text-align:center;}
<!-– codice stile cella -–>
#tabella td {background:#ffffff;border-top:1px solid #FFFFFF;color:#323232;padding:14px;}
<!– codice stile righe dispari –>
#tabella tr.tabella-dispari td {background:#f3f1f1;color:#323232;}
Grazie eventualmente !