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>
  • 相关阅读:
    迭代器和生成器
    20.03.23作业
    装饰器
    集合
    元组类型
    字典类型
    列表类型
    字符串类型
    for循环
    深浅copy与while循环
  • 原文地址:https://www.cnblogs.com/nxmxl/p/11909535.html
Copyright © 2011-2022 走看看