I want to make the following but with CSS classes – as simple as can be:
<table cellspacing="0" cellpadding="0">
<tr>
<td style="color:red;text-decoration:underline;padding-right:50px;">cell1</td>
<td style="color:red;text-decoration:underline;">cell2</td>
</tr>
<tr>
<td style="color:red;text-decoration:underline;padding-right:50px;">cell3</td>
<td style="color:red;text-decoration:underline;">cell4</td>
</tr>
</table>
What is the best way to do it?
The CSS equivalent for
<table cellspacing="0">isAnd for
<table cellpadding="0">isSo, this should do: