css中实现在Chrome,IE(10+),Firefox中隐藏滚动条

.类名{
  ...
  overfolw-y:auto;
  height:50px;
  &::-webkit-scrollbar{
    display:none;
 }     
 //firefox
 scrollbar-width:none;
 //IE 10+
 -ms-overflow-style:none;
}

 

posted @ 2020-07-16 16:28  偷懒的求知者  阅读(157)  评论(0)    收藏  举报