其他分享
首页 > 其他分享> > HTML & CSS – Styling Table

HTML & CSS – Styling Table

作者:互联网

前言

Table (表格) 历史悠久, 它有许多独特的默认样式, 甚至是最早期的布局方案 (现在依然有用 table 来做布局的, 比如 email template).

这篇来介绍一下基本的 table styling.

 

参考

Youtube – Styling HTML tables with CSS - Web Design/UX Tutorial

Youtube – HTML Tables Tutorial with CSS Styling - Crash Course

Youtube – How To Create Responsive Table In HTML & CSS || How To Make Responsive Table Using HTML & CSS (RWD Table)

 

Table HTML 结构

<table>
  <caption>
    Table Title
  </caption>
  <thead>
    <tr>
      <th>First Name</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Heng Keat</td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <td>Footer value</td>
    </tr>
  </tfoot>
</table>

table 就不用说了

caption 是 table 的 title, 很少会用到, 除非在乎 semantic HTML

thead, tbody, tfoot 是 table 内容的结构, 类似于 header, main, footer, 不要小看它哦, 在 printing 的时候 thead, tfoot 会在每一页都出现哦 (很重要的功能)

tr 是 table row

th 是 table header, 用来放 column label (注: 上面 thead 是 table head) 

td 是 table data, 也叫 table cell, 用来放 data

上面这个结构最常见的, 但不是唯一

 

这种双 label 也是 ok 的, 效果:

 

 

Default Style

<table>
  <thead>
    <tr>
      <th>First Name</th>
      <th>Last Name</td>
      <th>Full Name</th>
      <th>Age</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Derrick</td>
      <td>Yam</td>
      <td>Derrick Yam</td>
      <td>40</td>
    </tr>
    <tr>
      <td>Kelly</td>
      <td>Wong</td>
      <td>Kelly Wong</td>
      <td>18</td>
    </tr>
    <tr>
      <td>Heng Keat</td>
      <td>Yam</td>
      <td>Yam Heng Keat</td>
      <td>25</td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <td></td>
      <td></td>
      <td>Total:</td>
      <td>83</td>
    </tr>
  </tfoot>
</table>
View Code

效果

特点:

1. header 有 bold, text-align: center

2. 每个 column (红框) 的 width 是 max-content

加上 border

table {
  border: 1px solid black;
  tr,
  th,
  td {
    border: 1px solid black;
  }
}

注: thead, tbody, tfoot 是没有 border 的

 

常用美化手法

默认太丑了, 通常会做一些小调整

1. border-collapse

table {
  border-collapse: collapse;
}

它类似 margin collapse, 会把 2 个 border 合并成 1 个, 效果

2. padding

空间是最重要的了

table {
  th,
  td {
    padding: 0.5rem 1rem;
  }
}

效果

到这里就算及格了, 剩余的就是美化而已.

3. 其它

CSS Style

table {
  border-radius: 10px 10px 0 0; // 要把 caption 拿掉才行哦, 不然 caption 在 top 看不到 radius 了
  overflow: hidden;
  border-collapse: collapse;

  tfoot {
    border-bottom: 4px solid crimson; // 必须给在 tfoot 因为有 collapse, table border-bottom 和 tfoot 会合并
  }

  th,
  td {
    padding: 0.5rem 1rem;
  }

  th {
    text-align: left;
    font-size: 2rem;
  }
  td {
    font-size: 1.5rem;
  }

  tbody tr:nth-last-of-type(even) {
    background-color: hsl(0, 13%, 85%);
  }

  thead {
    background-color: crimson;
    color: white;
  }
}
View Code

 

其它招数

align & valign attribute

上面的 Age column 是靠右边的, 但是 CSS  缺没有声明, 这是因为它是用 HTML Attribute 声明的

当然你要用 CSS 也是可以, 那就是 text-align.

<tfoot>
  <tr>
    <td></td>
    <td></td>
    <td align="right">Total:</td>
    <td align="right">83</td>
  </tr>
</tfoot>

valign 就是 vertical align, 目前例子中看不出来, 我们修改一下例子

 

把 Full Name column 所以的 th, td 设置成 width: 50px, 字 wrap 以后高度就增加了. 这时会发现 Age column 的值是居中的.

通过 attribute valign 或 CSS vertical-align: top 就可以让字体靠上了.

 

col-span & row-span

假设 total 很长, 这会导致 Age column 也很长, 但偏偏 tfoot 右边有许多可用空间, 这时就可以充分利用这些空间了.

<tfoot>
  <tr>
    <td></td>
    <td align="right">Total:</td>
    <td colspan="2" align="right">1234567891012345678910</td>
  </tr>
</tfoot>

让 tr 内只有 3 个 td, 最后一个 td 使用 2 个格子, 效果

 

colspan: 2 意思是用 2 个 column

rowspan 就是用 2 个 row (反过来而已)

这个 span 的概念和 grid 是一样的, grid 就是抄袭 table 的. table 才是鼻祖.

有玩过 Excel 的 merge cells 也可以体会到它是同一个概念.

 

标签:Styling,HTML,tfoot,table,Table,td,border,CSS
来源: https://www.cnblogs.com/keatkeat/p/16109903.html