首页 前端知识 scroll滚动条样式【CSS】

scroll滚动条样式【CSS】

2024-03-18 11:03:51 前端知识 前端哥 851 692 我要收藏

一、全局滚动条样式设置:

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background-color: #99a9bf;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 5px;
    background-color: #d3dce6;
}

二、单独滚动条样式设置

.container {
    max-height: 100vh;
    overflow-y: scroll;
 
&::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
 
&::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background-color: #99a9bf;
}
 
&::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 5px;
    background-color: #d3dce6;
}
 
}

原文地址https://blog.csdn.net/Fansr_/article/details/119784638

转载请注明出处或者链接地址:https://www.qianduange.cn//article/3927.html
评论
发布的文章

jQuery事件绑定

2024-04-13 09:04:31

Jquery——基础

2024-04-03 12:04:28

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!