vue2+ant-design-vue a-table滚动鼠标时固定表头

需求

鼠标滚动时表头固定不跟着滑动

代码

// html
<div class="scroll-tabox">
<a-table></a-table>
</div>
// css
.scroll-tabox{
	position: relative;
	/deep/ .ant-table-thead{
		position:sticky;
		top : 0px;
		z-index:9999;
    background: #fff;
	}
}

猜你喜欢

转载自blog.csdn.net/zhongxiajiu/article/details/131808138