cellmargin, cellmargin-bottom, cellmargin-left, cellmargin-right, cellmargin-top attribute

Type:length
Inherited:no
Used By:table
See:cellborder cellpadding margin

The cellmargin set of attributes can be used on a table element to set the default margin value for each of it's td elements. It functions exactly the same way as margin.

These two tables will appear identical

<table cellmargin="20">
  <tr>
    <td>test</td>
  </tr>
</table>

<table>
  <tr>
    <td margin="20">test</td>
  </tr>
</table>