What do you think is the most logical and efficient way to style a table in HTML/CSS?
I've seen a lot of people using HTML properties in their code like
<table width="80%" cellspacing="2" border="0">
<tr>
<td align="right" nowrap="nowrap">
</td>
</tr>
</table>
Wouldn't it be easier to give tables and tds classes/ids and format them in an external stylesheet?