Hier kommt eine Tabelle:
Mit HTML:
<table width="90%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#663399">...
Mit CSS wird die Tabelle ab einfachsten in einen <div> gepackt:
<div id="tabelle">
<table>...
Im CSS muss dann stehen:
#tabelle table, #tabelle td {
border-collapse:collapse;
border:1px solid #663399;
}
#tabelle table {
width: 90%;
margin:0 auto;
}