美文网首页前端技术
前端界面css自定义滚动条样式

前端界面css自定义滚动条样式

作者: 蜗牛呱呱 | 来源:发表于2018-03-20 19:30 被阅读0次

    #scrollbar{

                    width:450px;

                    height:300px;

                    margin:100px auto;

                    border: 1px #eee solid;

                    background-color:#eee;

                    display:inline-block;

                    overflow: auto;

                    -webkit-overflow-scrolling : touch; 

                }

                /*凹槽宽度*/

                #scrollbar::-webkit-scrollbar{

                    width:8px;

                    height:8px;

                }

                /*拖动条*/

                #scrollbar::-webkit-scrollbar-thumb{

                    background-color:#ccc;

                    border-radius:6px;

                }

                /*背景槽*/

                #scrollbar::-webkit-scrollbar-track{

                    background-color:#ddd;

                    border-radius:6px;

                }

    相关文章

      网友评论

        本文标题:前端界面css自定义滚动条样式

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