简单css实现表格头部固定
table tbody {
display: block;
max-height: 270px;
overflow-y: auto;
}
table thead,
tbody tr {
display: table;
width: 100%;
table-layout: fixed;
}
table tbody {
display: block;
max-height: 270px;
overflow-y: auto;
}
table thead,
tbody tr {
display: table;
width: 100%;
table-layout: fixed;
}