 |
|
| TR - table row |
|
| Description |
|
The TR tag specifies a table row. Use the TR tag inside a TABLE tag. The TR tag can contain TH tags, which
indicate table headings, and TD tags, which indicate table cells. |
|
| Syntax |
|
<TR ALIGN="center|left|right" VALIGN="baseline|bottom|middle|top" BGCOLOR="color">...</TR> |
|
| Attributes |
|
ALIGN specifies the horizontal placement of the contents of the cell:
- CENTER centers the content within the cell.
- LEFT aligns the content within the cell to the left (the default).
- RIGHT aligns the content within the cell to the right.
|
VALIGN specifies the vertical placement of the content in the cell:
- BASELINE aligns the content with the cell's baseline.
- BOTTOM aligns the content with the cell's bottom.
- MIDDLE centers the content within the cell (the default).
- TOP aligns the content with the cell's top.
|
BGCOLOR specifies the default color of the background of the table row. |
|
|