浏览器滚动条样式+el-table滚动条样式

108 阅读1分钟

::v-deep .el-table__body-wrapper::-webkit-scrollbar { width: 6px; // 横向滚动条 height: 6px; // 纵向滚动条 必写 } ::v-deep .el-table__body-wrapper::-webkit-scrollbar-thumb { background-color: #ddd; border-radius: 3px; }

::-webkit-scrollbar { width: 6px; height: 6px; }

::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,0.2); border-radius: 6px; }