<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*webkit内核*/
.b-article::-webkit-scrollbar {
    width:0px;
    height:0px;
}
.b-article::-webkit-scrollbar-button    {
    background-color:rgba(0,0,0,0);
}
.b-article::-webkit-scrollbar-track     {
    background-color:rgba(0,0,0,0);
}
.b-article::-webkit-scrollbar-track-piece {
    background-color:rgba(0,0,0,0);
}
.b-article::-webkit-scrollbar-thumb{
    background-color:rgba(0,0,0,0);
}
.b-article::-webkit-scrollbar-corner {
    background-color:rgba(0,0,0,0);
}
.b-article::-webkit-scrollbar-resizer  {
    background-color:rgba(0,0,0,0);
}
.b-article::-webkit-scrollbar {
    width:10px;
    height:10px;
}
/*o内核*/
.b-article .-o-scrollbar{
    -moz-appearance: none !important;   
    background: rgba(0,255,0,0) !important;  
}
.b-article::-o-scrollbar-button    {
    background-color:rgba(0,0,0,0);
}
.b-article::-o-scrollbar-track     {
    background-color:rgba(0,0,0,0);
}
.b-article::-o-scrollbar-track-piece {
    background-color:rgba(0,0,0,0);
}
.b-article::-o-scrollbar-thumb{
    background-color:rgba(0,0,0,0);
}
.b-article::-o-scrollbar-corner {
    background-color:rgba(0,0,0,0);
}
.b-article::-o-scrollbar-resizer  {
    background-color:rgba(0,0,0,0);
}
/*IE10,IE11,IE12*/
.b-article{
    -ms-scroll-chaining: chained;
    -ms-overflow-style: none;
    -ms-content-zooming: zoom;
    -ms-scroll-rails: none;
    -ms-content-zoom-limit-min: 100%;
    -ms-content-zoom-limit-max: 500%;
    -ms-scroll-snap-type: proximity;
    -ms-scroll-snap-points-x: snapList(100%, 200%, 300%, 400%, 500%);
    -ms-overflow-style: none;
    overflow: auto;
}
————————————————
版权声明：本文为CSDN博主「电鳗效应」的原创文章，遵循CC 4.0 BY-SA版权协议，转载请附上原文出处链接及本声明。
原文链接：https://blog.csdn.net/qq_2842405070/article/details/70238829
</pre></body></html>