|
|
|
|
|
|
Tables |
|
TITLE
|
TAG &
DESCRIPTION |
|
Define Table |
<TABLE> </TABLE> |
|
signals the beginning of a table |
|
Table Alignment |
<TABLE ALIGN= LEFT|RIGHT|CENTER>
|
|
aligns the table within the
browser window |
|
Table Border |
<TABLE BORDER> </TABLE>
|
|
table border either on or off |
|
Table Border |
<TABLE BORDER=?> </TABLE>
|
|
border of table, you can set the
value (aka width) |
|
Cell Spacing |
<TABLE CELLSPACING=?>
|
|
places specific amount of space
between the individual cells within a table |
|
Cell Padding |
<TABLE CELLPADDING=?>
|
|
places specific amount of space
between the cells border and its contents |
|
Desired Width |
<TABLE WIDTH=?> |
|
width of table in pixels |
|
Width Percent |
<TABLE WIDTH=%> |
|
width of table in percentage of
page |
|
Table Color |
<TABLE BGCOLOR="#$$$$$$">
</TABLE> |
|
overall background color of
table |
|
Table Frame |
<TABLE FRAME= VOID |ABOVE |BELOW
|HSIDES |LHS |RHS|VSIDES|BOX|BORDER> </TABLE> |
|
controls how the border around
the outside edge of the table is displayed |
|
Table Rules |
<TABLE RULES= NONE| GROUPS|
ROWS|COLS|ALL> </TABLE> |
|
controls the vertical and
horizontal lines displayed |
|
Border Color |
<TABLE BORDERCOLOR="#$$$$$$">
</TABLE>
|
|
the color of the table border |
|
Table Row |
<TR> </TR> |
|
table row |
|
Alignment |
<TR ALIGN= LEFT| RIGHT| CENTER|
MIDDLE| BOTTOM>
|
|
alignment of the table row |
|
Table Cell |
<TD> </TD> |
|
specific table cell, must appear
within table rows |
|
Alignment |
<TD ALIGN= LEFT|RIGHT|CENTER
VALIGN= TOP|MIDDLE|BOTTOM> |
|
alignment of the table cell |
|
No Line Breaks |
<TD NOWRAP>
|
|
no line breaks within the table
cell |
|
Columns to Span |
<TD COLSPAN=?> |
|
identifies the the number of
columns the cell should span |
|
Rows to Span |
<TD ROWSPAN=?> |
|
identifies the the number of
rows the cell should span |
|
Desired Width |
<TD WIDTH=?> |
|
width of cell in pixels |
|
Width Percent |
<TD WIDTH="%">
|
|
width of cell as percentage of
table |
|
Cell Color |
<TD BGCOLOR="#$$$$$$">
|
|
background color of table cell |
|
Header Cell |
<TH> </TH> |
|
table cell for header
information (bold & centered) |
|
Alignment |
<TH ALIGN= LEFT| RIGHT| CENTER|
MIDDLE|BOTTOM> |
|
alignment of the header cell |
|
No Line Breaks |
<TH NOWRAP>
|
|
no line breaks within the header
cell |
|
Columns to Span |
<TH COLSPAN=?> |
|
identifies the number of columns
the header cell should span |
|
Rows to Span |
<TH ROWSPAN=?> |
|
identifies the number of rows
the header cell should span |
|
Desired Width |
<TH WIDTH=?> |
|
width of header cell in pixels |
|
Width Percent |
<TH WIDTH="%">
|
|
width of header cell as
percentage of table |
|
Cell Color |
<TH BGCOLOR="#$$$$$$">
|
|
background color of header cell |
|
Table Body |
<TBODY> |
|
identifies the specific body
section of the table |
|
Table Footer |
<TFOOT> </TFOOT>
|
|
separates group of cells to
serve as footer material for the table (must come before <THEAD>)
|
|
Table Header |
<THEAD> </THEAD> |
|
separates group of cells to
serve as header material for the table |
|
Table Caption |
<CAPTION> </CAPTION>
|
|
caption for a table |
|
Alignment |
<CAPTION ALIGN=TOP|BOTTOM|LEFT|RIGHT>
|
|
alignment for the caption of a
table |
|
Column |
<COL> </COL> |
|
groups column attributes |
|
Columns Spanned |
<COL SPAN=?> </COL>
|
|
indicates the number of columns
spanned |
|
Column Width |
<COL WIDTH=?> </COL>
|
|
column width in pixels |
|
Width Percent |
<COL WIDTH="%"> </COL>
|
|
column width as percentage of
table |
|
Group Columns |
<COLGROUP> </COLGROUP>
|
|
groups column structure |
|
Columns Spanned |
<COLGROUP SPAN=?> </COLGROUP>
|
|
indicates columns spanned in the
grouped column structure |
|
Group Width |
<COLGROUP WIDTH=?> </COLGROUP>
|
|
indicates columns the width of
the group of columns in pixels |
|
Width Percent |
<COLGROUP WIDTH="%"> </COLGROUP>
|
|
indicates columns the width of
the group of columns as a percentage of table |
|
|