关于css:css自定义滚动条样式

css管制滚动条宽度和色彩

::-webkit-scrollbar {
        width: 7px;
        height: 7px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    width: 4px;
    border-radius: 5px;
    background-color: #5e5e6a;
}

::-webkit-scrollbar-track:hover {
    background-color: transparent;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #5e5e6a;
}

::-webkit-scrollbar-thumb:active {
    background-color: #5e5e6a;
}

指定某个div.custom的滚动条款式 前端加相应的选择器即可

div.custom::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理