需求:
隐藏浏览器自带滚动条样式(兼容Chrome和Firefox)
解决方法:
Chrome浏览器:
&::-webkit-scrollbar {
display: none;
}
Firefox浏览器:
scrollbar-width: none;
效果:
Chrome浏览器可以隐藏滚动条的同时保存滚动效果,Firefox浏览器隐藏滚动条不生效
问题点:
检查发现scrollbar-width属性没有生效,开发用Firefox浏览器版本57,网上查过后发现scrollbar-width属性对Firefox浏览器64及以上版本才适用
因此,升级过Firefox浏览器版本后解决这个问题。
来源:CSDN
作者:山雨欲来枫满楼
链接:https://blog.csdn.net/weixin_44829594/article/details/103885144