前端之家收集整理的这篇文章主要介绍了
html – 验证:“在表体中开始标记.”,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<table>
<thead>
<th>Table Heading</th>
</thead>
<tbody>
<tr>.....
</tbody>
</table>
当我尝试验证这部分代码时,验证程序返回此错误:
th start tag in table body.
表模板是从getbootstrap.com复制的,所以我认为它是有效的.这有什么问题?为什么验证器会返回此错误,我该如何解决?
th是一个表头单元格 – 它需要在一个tr内:
<table>
<thead>
<tr>
<th>Table Heading</th>
</tr>
</thead>
<tbody>
<tr>.....
</tbody>
</table>
原文链接:https://www.f2er.com/html/228321.html