其他分享
首页 > 其他分享> > 2021/10/18 table:tr,th,td,caption

2021/10/18 table:tr,th,td,caption

作者:互联网

13.1 表格 

  <tr>
    <th>外号</th>
    <th>原名</th>
    <th>特长</th>
    <th>照片</th>
  </tr>
  <tr>
    <th>美国队长</th>
    <td>史蒂芬·罗杰斯</td>
    <td>强化体格</td>
    <td><img src="img/CaptainAmerica.jpg" alt="美国队长" width="300"></td>
  </tr>

13.2 表格边框

  <style>
    table {
      border: 1px solid black;
      border-collapse: collapse;
      }
    th {
      border: 1px solid red;
      }
    td {
      border: 1px solid blue;
      }
  </style>

13.3 给表格加标题:caption

  caption 元素需要紧挨着 table 元素的开始标签。

  <table>
    <caption>复仇者联盟主要成员技能表</caption>

    ...

标签:10,表格,solid,18,tr,caption,1px,table,border
来源: https://www.cnblogs.com/heini-wei/p/15421247.html