table 固定列头方法(CSS)

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

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

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

table thead th {
background: #ccc;
}

posted @ 2017-06-23 17:31  jep  阅读(2893)  评论(0)    收藏  举报