前端技术

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

2018-03-20  本文已影响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;

            }

上一篇下一篇

猜你喜欢

热点阅读