标签:scroll color play 宽度 表格 表头 height 纯css isp
//控制表格滑动
table tbody {
display:block;
height:450px;
overflow-y:scroll;
}
//固定表头
table thead, tbody tr {
display:table;
width:100%;
table-layout:fixed;
}
//调节表头宽度
table thead {
background-color:#f5f5f5;
width: calc( 100% - 1.25em );
}
如果出现表头与下面表格没有对齐,只需要修改width: calc( 100% - 1.25em );中的xxem即可
标签:scroll color play 宽度 表格 表头 height 纯css isp
原文地址:https://www.cnblogs.com/AsCrazy/p/11538289.html