el-table横向滚动条
clike
.is-scrolling-left::-webkit-scrollbar {
display: block;
width: 5px !important;竖向滚动条
height: 5px !important;横向滚动条
background: #051f3e !important;
}
::-webkit-scrollbar-thumb {
background: #bee5ff !important;
border-radius: 6px !important;
}
但是这样写,在滚动的情况下,滚动条会消失不见,下面才可以不需要 .is-scrolling-left
clike
::-webkit-scrollbar {
display: block;
width: 5px !important;
height: 5px !important;
background: #051f3e !important;
}
::-webkit-scrollbar-thumb {
background: #bee5ff !important;
border-radius: 6px !important;
}