|
hitmill.com
![]() |
|
|
ALIGN
BACKGROUND BGCOLOR BORDER BORDERCOLOR BORDERCOLORLIGHT BORDERCOLORDARK CELLPADDING CELLSPACING COLS COLSPAN FRAME HSPACE ROWSPAN VSPACE WIDTH CELLPADDING
Think of CELLPADDING as the width of the inside cell borders for the table cells. It is an attribute of the <TABLE> element which is set for the entire table in the table tag. In the table below, I have set the CELLPADDING="18".
Below, the cellpadding is set at 20, the BORDER is 2; CELLSPACING="0".
The CELLPADDING of the first table was 18 pixels and the CELLPADDING of the second table was 20 pixels. Compare the inner border spacing (white space padding around the cell contents) of each cell and its contents from the first table to the second table. Can you notice the difference of 2 pixels in the cellpadding from one table to the next? CELLPADDING refers to the inner margins of free space that each cell of a table has as its "padded" border. It is a cell border of "white space" inside the individual cells of a table.
If a table has only one cell, or has one hundred cells, the attribute of cellspacing is written only once in the table tag.
CELLSPACINGCELLSPACING, on the other hand, refers to how space is left between each cell wall in a table. If you want no spaces at all, you MUST set CELLSPACING="0", otherwise the default is CELLSPACING="1", even if you don't even mention CELLSPACING. In the first table below, I will set BORDER="3" CELLSPACING="4" and CELLPADDING="10".
Next tables, CELLSPACING="10" CELLPADDING="4"
Note:
The space between the cells across the rows will only be controlled if you use the cellspacingattributes in combination with a WIDTH setting for each cell in the first row.
The way to set a cell width setting is to insert it inside the <TD WIDTH="100">.
What happens if you set the cellspacing and use the TABLE WIDTH but not the CELL WIDTH settings? You will get the correct cellspacing again, but the cells will "discover" their own width". See the example below:
<TABLE WIDTH="300" CELLSPACING="4" CELLPADDING="8" BORDER="2" BORDERCOLOR="blue"><TR> Tip:
Code a non-breaking space, ,in every "empty" table cell, just so that the cell is tricked into thinking it is "holding something". It begins with the ampersand then the letters nbsp and followed by a semicolon ( ; ). ( ) |