html, body can continue to scroll after the scroll bar is hidden

html, body can continue to scroll after the scroll bar is hidden

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    
    
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
body {
    
    
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

Before and after comparison on chrome

Before:
html, body can continue to scroll after the scroll bar is hidden
After:
html, body can continue to scroll after the scroll bar is hidden
Link: W3C

Guess you like

Origin blog.csdn.net/weixin_43814775/article/details/112285121