Reputation: 6195
How do you set the overflow scroll without the bottom scroll?
I only need to show the side scroll for the wrapper of the content.
Upvotes: 0
Views: 387
Reputation: 18522
Some browsers support
overflow-x: visible|hidden|auto|scroll;
overflow-y: visible|hidden|auto|scroll;
Upvotes: 1
Reputation: 17295
This will show only vertical scrollbar.
#element {
overflow: auto;
}
OR:
overflow-x:hidden;
overflow-y:auto;
Upvotes: 3