HTML タグを使用して単純なテーブルを作成しています。ソースコードは次のようになります。
<table class="tableClass">
<thead>
<tr>
<th>Column Header</th>
<th>Column Header</th>
<tr>
</thead>
<tbody>
<tr>
<td>Column Data</td>
<td>Column Data</td>
</tr>
</tbody>
</table>
Browser in Head セクションのテーブルを試してみると、空の行のようです。Firefox と Chrome で試してみましたが、デバッガーは次のように出力します。
<table class="tableClass">
<thead>
<tr>
<th>Column Header</th>
<th>Column Header</th>
<tr>
<tr></tr>
</thead>
その空の行はコードのどこにも表示されませんが、デバッガーはそれを見つけたようです。それはどこから来たのでしょうか?テーブルスタイルと関係ありますか?