如何固定表头?

table tbody {
    width:100%;
    display:block;
    height:195px;
    overflow-y:scroll;
 }
table thead, tbody tr {
   display:table;
   width:100%;
   table-layout:fixed;
}
table thead {
   width: calc( 100% - 1em )
}
原文地址:https://www.cnblogs.com/clj2017/p/7422759.html