码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2019-09-18 09:19:07      阅读:199      评论:0      收藏:0      [点我收藏+]

标签: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即可

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

标签:scroll   color   play   宽度   表格   表头   height   纯css   isp   

原文地址:https://www.cnblogs.com/AsCrazy/p/11538289.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!