position: sticky; 用于table显示标题thead固定,滚动tbody内容。 yolandaccc 2024-01-12 58 阅读1分钟 .myTable{ height: 40vh; overflow: auto; } .myThead { position: sticky; top: 0; height:40px; background-color: white; z-index: 1; } .myTbody{ z-index: 0; }