HTML newbie here....
I have a table with 3 horizontal cells, with the cellspacing currently set to 10. see code below.
I want to increase the space between cells 1 and 2 and cells 2 and 3 without increasing the spacing on the other 3 sides of the cell.
So ideally the spacing values for the 1st cell would be: top cell spacing 10, right 20, bottom 10, and left 5. Then same values for cell 2, and finally same values for cell 3 but with the right being 5 (to create the same width in from edge of page).
Can anyone help me with the code for this?
Thanks
<table width="100" cellpadding="10" cellspacing="10">
<tbody>
<tr align="center" valign="bottom">
<td style="border: 1px solid rgb(220, 220, 220);">CONTENT</td>
<td style="border: 1px solid rgb(220, 220, 220);">CONTENT</td>
<td style="border: 1px solid rgb(220, 220, 220);">CONTENT</td>
</tr>
</tbody>
</table>