There is scrolling effect but do not scroll bar

It's very simple, just set the following css properties for the container that you want to have a scrolling effect but don't want a scroll bar:

::-webkit-scrollbar {
    
    
  display: none;
}

Guess you like

Origin blog.csdn.net/weixin_43131046/article/details/115049748