HTML TR Table Tag
The <tr></tr> tags control the rows within the table. It signifies the beginning of the next row.
Syntax
<table>
<TR bgcolor="#rrggbb" align=position valign=position rowspan=number>
<td>
text-or-graphics
</td>
</TR>
</table>
Modifiers
- ALIGN=position
- The align modifier controls the location of an item that is shorter than the screen
width. It can be LEFT, CENTER or RIGHT. - VALIGN=position
- The valign modifier controls the vertical locations for the current row. It can be TOP, MIDDLE or BOTTOM.
- BGCOLOR="color"
- Defines the background color.
- ROWSPAN=number
- Makes the current cell the height of number cells. This is a very useful HTML table trick.