HTML Tr Tag
Reference on the Tr Element of HTML. Including its useful example, and a list of allowed attributes.
The tr element, is used inside the table element, as a container for table cells and header cells. Each tr element, creates a row of table cells.
Attributes
| Attribute: | Value: | Description: |
| Attrs | Other Attributes | Common, Event, I18n |
| cellhalign | left|center|right|justify|char | horizontal alignment in cells |
| cellvalign | top|middle|bottom|baseline | vertical alignment in cells |
Example
<table summary="Example of how to use the tr Element"> <tr> <td> Cell 1 </td><td> Cell 2 </td><td> Cell 3 </td> </tr> <tr> <td>The first cell</td><td>The second cell</td><td>The third cell</td> </tr> </table>