Forum Moderators: open
You would need to apply that style to the <td> as well.
The easiest way to do this would be to create a class... I'm assuming that you are not using an external style sheet so I'll set it up within the document.
Within your <head></head> add this:
----------------------------------
<style type="text/css">
table.redborder, table.redborder td {
border: 1px solid #ff0000;
}
</style>
-------------
Now for each table that you want the red border applied to add the class "redborder" to the table tag like this:
--------
<table class="redborder" cellpadding="0" cellspacing="0">
<tr>
<td>This cell has a red border now.</td>
</tr>
<tr>
<td>This cell has a red border now.</td>
</tr>
</table>
Daf