Cancel the scroll bar of overflow:auto

One line of code

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

.box is the box where you want to cancel the scroll bar

If you need to cancel the default scroll bar that comes with the system

html{
    
    
  overflow: hidden;
}

Guess you like

Origin blog.csdn.net/weixin_51198863/article/details/111405935