Help with tables on a page
I'm trying to add a table to a new page. I don't seem to be able to get the borders, cell spacing or padding to work. This is the code I'm using:
<table border="1" cellspacing="5" cellpadding="5" width="100%">
<tbody>
<tr>
<td width="20%">a</td>
<td width="50%">b</td>
<td width="30%">c</td>
</tr>
</tbody>
</table>
In the visual editor it looks fine, but when I publish it nothing but the letters "a,b & c" appear. If I fill the cells with text, there is no padding or spacing.
What am I doing wrong?