• table中的一些奇特标签


    <table border="3" width="300px">
    <caption style="text-align: left">                  caption表格标题
    zhouxiaoliang
    </caption>
    <colgroup></colgroup>                          colgroup用于对表格中的列进行组合,以便对其进行格式化。
    <colgroup style="background-color: red"></colgroup>
    <tbody>                                  
        <tr>
    <td>123</td>
    <td>123</td>
    </tr>
    </tbody>
    <tfoot>
    <tr>
    <td>123</td>
    <td>123</td>
    </tr>
    </tfoot>
    <thead>
    <tr>
    <td>12</td>
    <td>12</td>
    </tr>
    </thead>
    </table>

    tbody 元素应该与 thead 和 tfoot 元素结合起来使用。

    thead 元素用于对 HTML 表格中的表头内容进行分组,而 tfoot 元素用于对 HTML 表格中的表注(页脚)内容进行分组

  • 相关阅读:
    Go语言string,int,int64 ,float转换
    Go 时间相关
    静态顺序表操作
    汇编基础
    C语言字节对齐
    BugkuCTF-游戏过关
    数组越界问题分析
    选择排序(Java)
    杨辉三角(C语言)
    二分查找(Java)
  • 原文地址:https://www.cnblogs.com/haloxinghong/p/7211039.html
Copyright © 2020-2023  润新知