TABLE ROW element
Syntax:
<TABLE><TR> ... </TR></TABLE>
Note: The Table Row element is always inside the TABLE element.
Example:
<TABLE BORDER>
<TR> <TH>Col 1 Row 1</TH> <TH>Col 2 Row 1</TH>/TR>
</TABLE>
ALIGN Attribute Example
<TABLE BORDER>
<TR ALIGN="left" >
<TH>Left Aligned Row</TH>/TR>
<TR ALIGN="center" >
<TH>Center Aligned Row</TH>/TR>
<TR ALIGN="right" >
<TH>Right Aligned Row</TH>/TR>
<TR><TH>***********************</TH></TR>
| Left Aligned Row |
| Center Aligned Row |
| Right Aligned Row |
| *********************** |
VALIGN Attribute Example
<TABLE BORDER>
<TR VALIGN="top" > <TH>*<BR>*<BR>* </TH>
<TH>Top Aligned Row</TH>/TR>
<TR VALIGN="middle" > <TH>*<BR>*<BR>* </TH>
<TH>Middle Aligned Row</TH>/TR>
<TR VALIGN="bottom" > <TH>*<BR>*<BR>* </TH>
<TH>Bottom Aligned Row</TH>/TR>
</TABLE>
* * * | Top Aligned Row |
* * * | Middle Aligned Row |
* * * | Bottom Aligned Row |