Heim > Artikel > Web-Frontend > Was stellt das
tr 元素包含一个或多个 th 或 td 元素。 HTML 与 XHTML 之间的差异: 在 HTML 4.01 中,tr 元素的 "bgcolor" 是不被赞成使用的。 在 XHTML 1.0 Strict DTD 中,tr 元素的 "bgcolor" 是不被支持的。 代码示例: 一个简单的 HTML 表格,包含两行两列: 效果: 推荐学习:html教程标签表示的是什么?
标签定义和用法
标签定义 HTML 表格中的行。 <html>
<body>
<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
</body>
</html>
Das obige ist der detaillierte Inhalt vonWas stellt das