前言:
除了将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;
}