table 表头固定,表体滚动的css方法

来源:互联网 发布:手机绘画的软件 编辑:程序博客网 时间:2024/05/27 20:43
  1. table tbody {  
  2.     display:block;  
  3.     height:500px;  
  4.     overflow-y:scroll;  
  5. }  
  6.   
  7.   
  8. table thead, tbody tr {  
  9.     display:table;  
  10.     width:100%;  
  11.     table-layout:fixed;  
  12. }  
  13.   
  14.   
  15. table thead {  
  16.     width: calc( 100% - 1em )  

  17. //1em根据滚动条所占页面宽度来定 
原创粉丝点击