HTML Table Padding & Spacing
HTML Table Padding and Spacing
Padding and spacing in HTML tables control the amount of space between the cell content and the cell border, as well as the space between individual cells.
Padding
The cellpadding attribute is used to set the padding around the content of a cell.
Example:
HTML
<table cellpadding="10">
</table>
This will create a 10-pixel...