1.想要实现表格的thead部分固定切tbody部分可滚动,就需要将thead与tbody进行分离,具体做法是
1.设置thead,tbody都为display:block;
2.设置th与td的宽度,强制使其填充整个table的宽度。
.table thead, .table tbody {
display: block;
} .table tbody {
height: 300px;
overflow-y: auto;
} .table td, .table th {
width: 460px;
}