纯Css固定表格表头,表头与表格对齐

//控制表格滑动

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即可

猜你喜欢

转载自www.cnblogs.com/AsCrazy/p/11538289.html