我正在使用 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>
当我在 Head 部分的 Browser 中尝试该表时,它似乎是一个空行。我在 Firefox 和 Chrome 中尝试过,调试器输出如下:
<table class="tableClass">
<thead>
<tr>
<th>Column Header</th>
<th>Column Header</th>
<tr>
<tr></tr>
</thead>
该空行没有出现在代码中的任何位置,但调试器似乎找到了它。有什么想法可以从哪里来?它与表格样式有关吗?