表格分层 ‹caption› ‹thead› ‹tbody› ‹tfoot›

Exisi 2020-06-04 14:25:15
Categories: Tags:

表格

描述

<caption>

定义表格标题。

<thead>

定义表格的页眉。

<tbody>

定义表格的主体。

<tfoot>

定义表格的页脚。

 

 

示例

<!DOCTYPE html>

<html lang="en">

 

<head>

    <meta charset="UTF-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

</head>

<style>

    table,th,td,tr,caption{

        border: 1px solid black;

    }

</style>

<body>

    <table>

        <caption>这是一个表格汇总</caption>

        <thead>

            <tr>

                <th>Header content 1</th>

                <th>Header content 2</th>

            </tr>

        </thead>

        <tfoot>

            <tr >

                <td>Footer content 1</td>

                <td>Footer content 2</td>

            </tr>

        </tfoot>

        <tbody>

            <tr>

                <td>Body content 1</td>

                <td>Body content 2</td>

            </tr>

        </tbody>

    </table>

</body>

 

</html>

 

浏览器运行结果如下: