HTML 5 <tr> Tag
Example
A simple HTML table, containing one row with two columns:
<table border="1">
<tr>
<td>Cell A</td>
<td>Cell B</td>
</tr>
</table> |
View it » |
Definition and Usage
Defines a row in an HTML table.
Differences Between HTML 4.01 and HTML 5
None of the HTML 4.01 attributes are supported in HTML 5.
Attributes
Attribute |
Value |
Description |
align |
right
left
center
justify
char |
Not supported in HTML 5 |
char |
character |
Not supported in HTML 5 |
charoff |
number |
Not supported in HTML 5 |
valign |
top
middle
bottom
baseline |
Not supported in HTML 5 |
Standard Attributes
The <a> tag also supports the Standard Attributes in HTML 5.
Event Attributes
The <a> tag also supports the Event Attributes
in HTML 5.
|