CSS 实现滚动时隐藏滚动进度条

Posted ·1417 Views·123 Words

CSS3 代码

html {
    -ms-overflow-style:none; 
    overflow:-moz-scrollbars-none; 
}
html::-webkit-scrollbar{
    width:0px
}

↑ 支持 Firefox、Webkit 内核的浏览器

Comments

Leave a comment to join the discussion