Html
    Css
    Js

    
                        
.fixed_header {
	width:400px;
	table-layout:fixed;
	border-collapse:collapse;
}
.fixed_header tbody {
	overflow:auto;
	height:100px;
}
.fixed_header thead {
	background:black;
	color:#fff;
}
.fixed_header th,.fixed_header td {
	padding:5px;
	text-align:left;
	width:200px;
}
.fixed_header tbody {
	display:block;
	overflow:auto;
	height:200px;
	width:100%;
}
.fixed_header thead tr {
	display:block;
}

                        
↑上面代码改变,会自动显示代码结果 jQuery调用版本:1.11.3
 立即下载

可滚动的tbody

第一步是:设置 tbody 为 display:block ,以便我们可以应用 height 和 overflow 属性。

下一步将是:设置thead 中的 tr元素设置为 display:block。

0