el-table横向滚动条,滚动后消失
el-table横向滚动条
.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
::-webkit-scrollbar {
display: block;
width: 5px !important;
height: 5px !important;
background: #051f3e !important;
}
::-webkit-scrollbar-thumb {
background: #bee5ff !important;
border-radius: 6px !important;
}
原文地址:https://blog.csdn.net/weixin_43493113/article/details/145003546
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!