属性

⭐️ 标签注意点

示例

<!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>
<body>
  <table border="1" cellpadding="10" cellspacing="10">
    <caption>用户</caption>
    <thead>
      <tr>
        <th>ID</th>
        <th>姓名</th>
        <th>电话</th>
        <th>年龄</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>1</td>
        <td>Lance</td>
        <td>18722212223</td>
        <td>26</td>
      </tr>
      <tr>
        <td>2</td>
        <td>GC</td>
        <td>18677721122</td>
        <td>30</td>
      </tr>
      <tr>
        <td>3</td>
        <td>Jerry</td>
        <!-- 合并n列 -->
        <td colspan="2">colspan合并2列</td>
      </tr>
      <tr>
        <td>4</td>
        <td>QB</td>
        <td>17699921242</td>
        <td rowspan="2">rowspan合并2行</td>
      </tr>
      <tr>
        <td>5</td>
        <td>Sherry</td>
        <td>18677721122</td>
      </tr>
    </tbody>
    <tfoot>
      <tr>
        <td colspan="4" align="right">合并整行</td>
      </tr>
    </tfoot>
  </table>
</body>
</html>

Untitled