Computer Science, asked by PragyaTbia, 1 year ago

Explain Cell spacing and cell pandding.

Answers

Answered by Anonymous
11

Cellspacing : The cellspacing attribute represents or control the space between the cells of a table. It is specified in pixels.

    Syntax : <table cellspacing="pixels">


For example :

  • <table cellspacing="5">
  • <table cellspacing="8">


Cellpadding : The cellpadding attribute represents or control the space between the cell content and cell wall. It is specified in pixels.

    Syntax : <table cellpadding="pixels">


For example :

  • <table cellpadding="3">
  • <table cellpadding="7">
Similar questions