美文网首页
css 隐藏浏览器滚动条

css 隐藏浏览器滚动条

作者: __鹿__ | 来源:发表于2021-12-03 09:59 被阅读0次

less写法

             .demo{
                        width: 100%;
                        height: 80%;
                        padding: 6px 1% 0px;
                        overflow-y: scroll;
                        overflow-x: hidden;
                        &::-webkit-scrollbar {
                            width: 3px;
                            // display:none;
                        }
                        &::-webkit-scrollbar-thumb {
                            border-radius:10px;
                            background:#26304d;
                            // display:none;
                        }
             }

相关文章

网友评论

      本文标题:css 隐藏浏览器滚动条

      本文链接:https://www.haomeiwen.com/subject/psquxrtx.html