position: sticky; 用于table显示标题thead固定,滚动tbody内容。

58 阅读1分钟

image.png

.myTable{  
  height: 40vh;  
  overflow: auto;  
}
.myThead {
   position: sticky;
   top: 0;
   height:40px;
   background-color: white;
   z-index: 1;
}
.myTbody{  
   z-index: 0;  
}