Fork me on github

浏览器滚动轴样式设置

  /* 滚动轴样式 */
        /*  // 滚动轴整体,主要设置宽度*/
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }

        /*// 滚动轴的背景区域*/
        ::-webkit-scrollbar-track {
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
            border-radius: 0px;
            background: rgba(0, 0, 0, 0.1);
        }

        /*// 滚动轴*/
        ::-webkit-scrollbar-thumb {
            border-radius: 5px;
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
            background: rgba(0, 0, 0, 0.1);
        }

            /*// 滚动轴浮动样式*/
            ::-webkit-scrollbar-thumb:hover {
                border-radius: 5px;
                box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
                background: rgba(189, 118, 118, 0.3);
            }

 

 

posted @ 2022-06-23 14:47  我の前端日记  阅读(145)  评论(0编辑  收藏  举报
Copyright © 2021 LinCangHai
Powered by .NET 5.0 on Kubernetes