Skip to main content

css 去掉元素滚动条

  • 在做移动端的特定场景,是不需要显示滚动条的。
  • 可以通过 css 样式设置滚动条隐藏;
.demo::-webkit-scrollbar {
display: none; /* Chrome Safari */
}
.demo {
scrollbar-width: none; /* firefox */

-ms-overflow-style: none; /* IE 10+ */

overflow-x: hidden;

overflow-y: auto;
}