Cellpadding in one html table cell

leora picture leora · Jul 22, 2009 · Viewed 78.8k times · Source

Is it possible to have cell padding in just one cell versus the whole html table?

Answer

Curtis Tasker picture Curtis Tasker · Jul 22, 2009

Just style the cell using CSS:

<table border='1'>
    <tr>
    <td style="padding: 50px;">cell1</td>
    </tr>
    <tr>
    <td>cell2</td>
    </tr>
</table>