1. 程式人生 > >表格表頭thead固定,tbody滾動實現樣式

表格表頭thead固定,tbody滾動實現樣式

設定樣式如下

 .table tbody {
    display: block;
    height: 620px;
    overflow-y: auto;

  }

.table thead, .table tbody tr {
      display: table;
      width: 100%;
      table-layout: fixed;
    }


  .table thead {
    width: calc( 100% - 1.2em );

  }

如果對不齊,可以調整thead 的em值