basics
expanding
sizing
colors
borders
alignment
nesting
navbar
quick recap
< tags >
epilogue
|
|
- <TABLE>...</TABLE>
- The TABLE tags start and end a table.
- WIDTH="..."
- The width attribute sets the width of the table in pixels or a percentage.
- BORDER="..."
- The border attribute sets the width of the outer border, zero makes
it invisible. Default is zero (off).
- BGCOLOR="..."
- The bgcolor attribute sets the background color for the entire table.
Names and hex numbers can be used. Default is transparent.
- CELLPADDING="..."
- The cellpadding attribute sets the space between cells. Default is
three pixels.
- CELLSPACING="..."
- The cell spacing attribute sets the space between a cell and its content.
Default is two pixels.
- VALIGN="..."
- Cell contents are Vertically ALIGNed to top, middle or bottom, default
is middle.
- <TR>...</TR>
- The Table Row tags start and end a table row.
- ALIGN="..."
- Cell contents in this row are ALIGNed to left, center or right, default
is left. Overrides table setting.
- VALIGN="..."
- Cell contents in this row are Vertically ALIGNed to top, middle or
bottom, default is middle. Overrides table setting.
- BGCOLOR="..."
- The bgcolor attribute sets the background color for a specific row.
Names and hex numbers can be used. Default is transparent. Overrides
table setting.
- <TD>...</TD>
- The Table Data tags start and end a table cell. Cell contents can
only be inside these tags.
- WIDTH="..."
- The width attribute sets the width of the cell in pixels or a percentage.
- BGCOLOR="..."
- The bgcolor attribute sets the background color for a specific cell.
Names and hex numbers can be used. Default is transparent. Overrides
table and row setting.
- ALIGN="..."
- Cell contents are ALIGNed to left, center or right, default is left.
Overrides table and row setting.
- VALIGN="..."
- Cell contents are Vertically ALIGNed to top, middle or bottom, default
is middle. Overrides table and row setting.
- COLSPAN="..."
- Lets a cell span two or more columns of a table.
- ROWSPAN="..."
- Lets a cell span two or more rows of a table.
|