<tr></tr>
trタグ。table row テーブル行 を省略したもの。
テーブル(表)においてセルを含む行の役割を果たす。1つ以上のthまたはtd要素を含むことが求められる。
終了タグは省略することが可能である。
HTML
<table border="1">
<caption>国語と算数の成績について</caption>
<tr>
<th rowspan="2"></th><th colspan="2">個別平均</th><th rowspan="2">全体平均</th>
</tr>
<tr>
<th>国語</th><th>算数</th>
</tr>
<tr>
<th>男子</th><td>81</td><td>75</td><td>78</td>
</tr>
<tr>
<th>女子</th><td>84</td><td>78</td><td>81</td>
</tr>
</table>