zoukankan      html  css  js  c++  java
  • 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>
  • 相关阅读:
    fidller 打断点
    随笔
    HTML标签介绍
    补充9.27----9.28
    html5_______9.26
    9.14
    9.13笔记
    9.12笔记
    CSS样式的引用
    html5_______9.10
  • 原文地址:https://www.cnblogs.com/nxmxl/p/11909535.html
Copyright © 2011-2022 走看看