Salve,

devo visualizzare delle news, per ciò dati tabellari, ma per fare la tabella, mi conviene fare una struttura semplice:

codice:
<table>
  <tr>
    <td>Dato</td>
    <td>Dato</td>
  </tr>
</table>
e poi gestisco tutto dai css,

o è meglio gestire le misure con html:

codice:
<table width="620" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="120">Dato</td>
    <td width="500">Dato</td>
  </tr>
</table>
e i colori bordi ecc.. ecc.. li gestisco con i css ?

Grazie !