[Vuejs]-How can I disable scrollbar by resizing elements?

0👍

  1. The code below can make your scrollbar invisible but still work:

.class-of-your-container::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
}

2.If you mean disable the scroll behavior,then you should make sure your document content’s height won’t exeed the window’s height.It is hard because the users screen’s height is not the same.To acheive this,you can add height:100% to your container element.

Leave a comment