<tr> attributes
The <tr> tag attributes are similar to the ones of the <table> tag. The below example show them on action
<table
border=2 width=50%>
<tr bgcolor="yellow" align="center">
<td>Canada</td>
<td>Ontario</td>
</tr>
<tr bordercolor="red">
<td>USA</td>
<td>Washington</td>
</tr>
<tr>
<td>England</td>
<td>London</td>
</tr>
</table>
| Canada |
Ontario |
| USA |
Washington |
| England |
London |
The table below shows a complete list of <tr> attributes
|
Attribute |
Description |
|
Align |
Horizontal align |
|
Halign |
Horizontal align |
|
Valign |
Vertical align |
|
Bgcolor |
Color of the background |
|
Background |
Background image |
|
Bordercolor |
Color of the border around each cell |
|
Bordercolorlight |
color of the "light" part of the row border |
|
bordercolordark |
color of the "dark" part of the row border |