Skip to content
文章目录

css隐藏滚动条

如果需要美化滚动条,请看这篇文章《css 美化滚动条》

chrome 和 Safari

css
.element::-webkit-scrollbar {
  width: 0 !important;
}

IE 10+

css
.element {
  -ms-overflow-style: none;
}

Firefox

css
.element {
  scrollbar-width: none;
}