关于vue火狐浏览器隐藏滚动条不生效的问题
需求:隐藏浏览器自带滚动条样式(兼容Chrome和Firefox)解决方法:Chrome浏览器:&::-webkit-scrollbar {display: none;}Firefox浏览器:scrollbar-width: none;效果:Chrome浏览器可以隐藏滚动条的同时保存滚动效果,Firefox浏览器隐藏滚动条不生效问题点:检查发现s...
·
需求:
隐藏浏览器自带滚动条样式(兼容Chrome和Firefox)
解决方法:
Chrome浏览器:
&::-webkit-scrollbar {
display: none;
}
Firefox浏览器:
scrollbar-width: none;
效果:
Chrome浏览器可以隐藏滚动条的同时保存滚动效果,Firefox浏览器隐藏滚动条不生效
问题点:
检查发现scrollbar-width属性没有生效,开发用Firefox浏览器版本57,网上查过后发现scrollbar-width属性对Firefox浏览器64及以上版本才适用
因此,升级过Firefox浏览器版本后解决这个问题。
更多推荐
已为社区贡献3条内容
所有评论(0)