HTML 表格 各标签使用的标准顺序(心得)

<table>
  <caption>标题</caption>
 
  <colground>
    <col>
    <col>
    <col>
  </colground>
 <thead>
  <tr>
   <th>表头1</th>
   <th>表头2</th>
   <th>表头3</th>
  </tr>
 </thead>
 
 <tfoot>
  <tr>
   <td>TFOOT-TD1</td>
   <td>TFOOT-TD2</td>
   <td>TFOOT-TD3</td>
  </tr>
 </tfoot>
 
 <tbody>
  <tr>
   <td>TBODY-TD1</td>
   <td>TBODY-TD2</td>
   <td>TBODY-TD3</td>
  </tr>
 </tbody>
原文地址:https://www.cnblogs.com/nxmxl/p/11909535.html