<TR>
The <TR> Tag is used for the start of Table Rows, with <TD> inside them which puts the cells
inside the Rows.

| Table data - Cell 1 |
Table data - Cell 2 |
| Table data - Cell 3 |
Table data - Cell 4 |

<table border="1" cellpadding="5"
width="75%" cellspacing="3">
<tr>
<td align="center">Table data - Cell 1</td>
<td>Table data - Cell 2</td>
</tr>
<tr>
<td align="center">Table data - Cell 3</td>
<td>Table data - Cell 4</td>
</tr>
</table>
<TR> requires a closing
</TR> Tag, and the
commands that can go inside <TR> are:
| ALIGN |
Controls whether the data inside a row is
aligned on the LEFT, RIGHT, or CENTER. Default is LEFT. |
| VALIGN |
Controls whether the data inside a row is
aligned on the TOP, BOTTOM, BASELINE, or CENTER.
Default is CENTER. |
| BGCOLOR |
Specifies the background color of the row in
Hex or RGB triplet. |
The following is for Internet Explorer-only:
| BORDERCOLOR |
Specifies the border color of the row in Hex or RGB triplet. |
| BORDERCOLORLIGHT |
Sets an independent lighter color to be displayed on the
border. BORDER is also required,
and the color can be in Hex or RGB triplet. |
| BORDERCOLORDARK |
Sets an independent darker color to be displayed on the
border. BORDER is also required,
and the color can be in Hex or RGB triplet. |
| BACKGROUND |
Tiles an image throughout the row, like <BODY> does
throughout a page. |
See the examples and learn more in
D.J. Quad's Ultimate Table Tutorial!
|