table如何固定表头,表体滚动。

75 阅读1分钟

方案一:

table tbody {
    display: block;
    height: 384px;
    overflow-y: scroll;
}

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

table thead {
    width: calc(100% - 1em)
}

方案二:

表头、表头分别用一个table