Monday 22 July 2013

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.

Example:

 <table width="500" border="1" cellspacing="10" cellpadding="0">
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table> 

No comments:

Post a Comment