标签搜索

css 强制显示滚动条

sunshine
2025-06-06 / 0 评论 / 8 阅读

      /* 强制显示滚动条 */
    .element::-webkit-scrollbar {
        -webkit-appearance: none; /* 去除默认样式 */
    }
     
    .element::-webkit-scrollbar-thumb { /* 设置滚动条滑块 */
        background-color: rgba(0,0,0,0.5); /* 设置滑块颜色 */
        border-radius: 10px; /* 设置滑块圆角 */
        border: 5px solid white; /* 设置滑块边框 */
    }
    
感觉很棒,欢迎点赞 OR 打赏~
0
分享到:

评论 (0)

取消

请先登录后再进行评论或留言