手记

纯CSS固定表头

.table-scroll thead {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.table-scroll tbody {
    max-height: 6rem;
    overflow-y: auto;
    display: block;
    width: 100%;
    table-layout: fixed;
}

.table-scroll tr {
    display: table;
    table-layout: fixed;
    width: 100%;
}


将所需固定表头的表格,加上class 名为:

table-scroll

刷新页面!大功告成!

1人推荐
随时随地看视频
慕课网APP