# scroll 滚动条优化
/*滚动条优化*/
::-webkit-scrollbar {
background:#FFFAE8;
width:6px;
height:8px;
}
::-webkit-scrollbar-thumb {
background:#899;
opacity:0.3;
width:8px;
border-radius:4px;
}
这是只兼容谷歌浏览器的简易写法。
如果需要适应更多浏览器需要配置,如Vuescroll.js 地址 (opens new window)