Vue去除滚动条(div加el-table)兼容firefox

澹台玉石
2023-12-01

1.el-table去除滚动条

		.el-table {
            height: calc(100vh - 280px);//固定高度
            overflow-y: auto;//设置滚动
            scrollbar-color: transparent transparent;//兼容火狐
            &.el-table--scrollable-y ::-webkit-scrollbar {
              display: none !important;//隐藏滚动条
            }

2.普通div去除滚动条

		.wrap{
		    height: calc(100vh - 112px);//固定高度
		    overflow: auto;//设置滚动
		    scrollbar-color: transparent transparent;//兼容火狐
		    &::-webkit-scrollbar {
		      display: none;//隐藏滚动条
		    }
		   }
 类似资料: