如何在允许滚动的情况下隐藏 React 应用程序中的滚动条?

How to hide scroll bar in react app with allowing scrolling?

我试图在我的 React 应用程序中隐藏滚动条,但无法实现。我尝试使用宽度为 0 的 ::-webkit-scrollbar 或显示为 none,但无法达到预期的结果。

取自W3 Schools

/* Hide scrollbar for Chrome, Safari and Opera */
.example::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.example {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}