html - Setting overflow scroll without bottom scroll -


How do you set the overflow scroll without scrolling down?

I need to show only the side scroll to the cover of the content

It will only show vertical scrollbars.

  #element {overflow: auto; }  

Or:

  Overflow-X: hidden; Overflow-y: auto;  

Comments