[html]自定义滚动条风格

webkit:

<style type="text/css">
    *{
    margin: 0;
    padding: 0;
}
    ::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    background-color: #01084c;
}
    ::-webkit-scrollbar-thumb:vertical{
    background-color: #498dff;
}
</style>
原文地址:https://www.cnblogs.com/lyggqm/p/7873023.html