Tianhe Gao

CSS 隐藏 Chrome 的滚动条

https://www.w3schools.com/howto/howto_css_hide_scrollbars.asp

/* 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 */
}

Welcome to tell me your thoughts via "email"
UP