what is cellspacing ?
cellspacing controls the space between table cells.
or The amount of space i.e. number of pixels, between cells in a table.
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
cellspacing controls the space between table cells.
or The amount of space i.e. number of pixels, between cells in a table.
Example:
<table width="500" border="1" cellspacing="10" cellpadding="0"><tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
No comments:
Post a Comment