element表格滚动错位问题,使用uniapp写的项目

element表格设置滚动条滚动到底错位_element表格滚动条无法滚动到最后-CSDN博客

参考上面的博主写的

		::v-deep ::-webkit-scrollbar {
			display: block !important;
			width: 8px !important;
			height: 8px !important;
			background: rgb(241, 241, 241) !important;
			-webkit-appearance: auto !important;
		}		
        ::v-deep .el-table__fixed-body-wrapper .el-table__body{
  			padding-bottom: 8px;
		}

给固定列加个滚动条的padding值就可以了

你可能感兴趣的:(uni-app)