<tr></tr>
align   valign   bgcolor  
bordercolor   bordercolorlight   bordercolordark


The <tr> is used with the <table> tag to define a table row. Each row can have should have at least one <td> tag, a table data field. (See <table> and <td>)

<tr align="">

   Description
   The align property is used to define the horizontal justification of the table row with the table. Acceptable values are left, rigth, and center.
Code
   <tr align="center"></tr>

<tr valign="">

   Description
   The valign property is used to define the vertical justification of the table row with the table. Acceptable values are top, bottom, and middle.
Code
   <tr valign="center"></tr>

<tr bgcolor="">

   Description
   The bgcolor attribute defines the background color of the table row. Acceptable values are the same as for the <font> tag. (See <font>.)
Code
   <tr bgcolor="red"></tr>

<tr bordercolor="">

   Description
   The bordercolor attribute defines the border color of the table row by using a hex value or a color name. Acceptable values are the same as for the <font> tag. (See <font>.)
Code
   <tr bordercolor="red"></tr>

<tr bordercolorlight="">

   Description
   The bordercolorlight attribute allows you to set the lighter color of a 3-D border for a table row as either a hex value or by using a color name. It is the oppposite of the bordercolordark attribute. Acceptable values are the same as for the <font> tag. (See <font>.)
Code
   <tr bordercolorlight="red"></tr>

<tr bordercolordark="">

   Description
   The bordercolordark attribute allows you to set the darker color of a 3-D border for a table row as either a hex value or by using a color name. It is the oppposite of the bordercolorlight attribute. Acceptable values are the same as for the <font> tag. (See <font>.)
Code
   <tr bordercolordark="red"></tr>
/body>