CSS 设置table下tbody滚动条

table tbody {

    display:block;

    height:195px;

    overflow-y:scroll;

}

table thead, tbody tr {

    display:table;

    100%;

    table-layout:fixed;

}

table thead {

    calc( 100% - 1em )

}

原文地址:https://www.cnblogs.com/sure2016/p/9235527.html