<thead>标签用于定义表格的头部
内部必须拥有<tr>标签,一般是位于第一行
<table> <thead> <tr> <th>...</th> </tr> </thead> <tbody> <tr> <td>...</td> </tr> ... </tbody> </table>
<thead>
原文:https://www.cnblogs.com/shiliye/p/14132513.html