css隐藏滚动条样式(避免滚动条出现污染样式结构)

108 阅读1分钟

代码

  overflow: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE10+ */
  &::-webkit-scrollbar {
    display: none; /* ChromeSafari */
    }