笔记二十三:css修改滚动条样式

151 阅读1分钟

本文已参与「新人创作礼」活动,一起开启掘金创作之路。

本文已参与「新人创作礼」活动,一起开启掘金创作之路。

&::-webkit-scrollbar {
                width: 6px !important;
                height: 6px !important;
            }
           &::-webkit-scrollbar-corner{
               background-color: transparent;
           }
            &::-webkit-scrollbar-thumb {
                border-radius: 2px !important;
                background: rgba(255, 255, 255, 0.45) !important;
            }


  &::-webkit-scrollbar {
                width: 10px;
            }
            &::-webkit-scrollbar-thumb {
                border-radius: 2px;
                background: rgba(255, 255, 255, 0.2);
            }