html 一个 实例,一个简单的html表格,包含两列两行 HTML 4.01 与 HTML5之间的差异 在 HTML 5 中,不支持 全局属性 事件属性 The above is the detailed content of How to use html tr tag. For more information, please follow other related articles on the PHP Chinese website!标签定义及使用说明
标签定义 HTML 表格中的行。
元素包含一个或多个 或 元素。
<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
标签在 HTML 4.01 中的任何属性。
标签支持 HTML 的全局属性。
标签支持 HTML 的事件属性。