<TR> Table Row Elements
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.
| Table Row |
Table Row |
| Table Row |
| Table Row |
<table border="1" width="50%">
<tr>
<td>Table Row</td>
<td>Table Row</td>
</tr>
<tr align="right">
<td>Table Row</td>
<td>Table Row</td>
</tr>
</table>

VALIGN - Controls whether the data inside a row is aligned on the
TOP, BOTTOM, BASELINE, or CENTER. Default is CENTER.
| Table Row |
Table Row |
Table
Row |
Table Row |
<table border="1" width="50%">
<tr>
<td>Table Row</td>
<td>Table Row</td>
</tr>
<tr valign="top">
<td>Table<br>Row</td>
<td>Table Row</td>
</tr>
</table>

BGCOLOR - Specifies the background color of the row in Hex or
RGB triplet.
| Table Row |
Table Row |
| Table Row |
Table Row |
<table border="1" width="50%">
<tr>
<td>Table Row</td>
<td>Table Row</td>
</tr>
<tr bgcolor="gray">
<td>Table Row</td>
<td>Table Row</td>
</tr>
</table>

|