Tables |
<TABLE>...</TABLE> |
Creates a table; includes common attributes. |
BORDER="..." |
Indicates whether the table should be drawn with or without a border. |
<CAPTION>...</CAPTION> |
The caption for the table. |
ALIGN="..." |
The position of the caption. Possible values are TOP and BOTTOM. |
<TR>...</TR> |
A table row. |
ALIGN="..." |
The horizontal alignment of the contents of the cells within this row; possible values are LEFT, RIGHT, and CENTER. |
VALIGN="..." |
The vertical alignment of the contents of the cells within this row; possible values are TOP, MIDDLE, BOTTOM, and BASELINE (Netscape only). |
<TH>...</TH> |
A table heading cell. |
ALIGN="..." |
The horizontal alignment of the contents of the cell. |
VALIGN="..." |
The vertical alignment of the contents of the cell. |
ROWSPAN="..." |
The number of rows this cell will span. |
COLSPAN="..." |
The number of columns this cell will span. |
NOWRAP |
Do not automatically wrap the contents of this cell. |
<TD>...</TD> |
Defines a table data cell. |
ALIGN="..." |
The horizontal alignment of the contents of the cell. |
VALIGN="..." |
The vertical alignment of the contents of the cell. |
ROWSPAN="..." |
The number of rows this cell will span. |
COLSPAN="..." |
The number of columns this cell will span. |
NOWRAP |
Do not automatically wrap the contents of this cell. |