0👍
- 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.
- [Vuejs]-Why do I get this undefined property error message in my promise?
- [Vuejs]-Error: The selector did not select any valid DOM element. Please check on which element you called AutoNumeric
Source:stackexchange.com