css中实现在Chrome,IE(10+),Firefox中隐藏滚动条
.类名{ ... overfolw-y:auto; height:50px; &::-webkit-scrollbar{ display:none; } //firefox scrollbar-width:none; //IE 10+ -ms-overflow-style:none; }
.类名{ ... overfolw-y:auto; height:50px; &::-webkit-scrollbar{ display:none; } //firefox scrollbar-width:none; //IE 10+ -ms-overflow-style:none; }