table 固定头部 body滚动

30 阅读1分钟

前言:

除了将table的thead加上 position: sticky;top: 0; 还可以这样写

tbody {    
    height: 300px;    
    display: block;    
    overflow-y: auto;   
    background: #ffffff;
}
thead {    
    width: calc(100% - 6px);  // 6是滚动条的宽度
}
thead , tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}