Setting overflow scroll without bottom scroll
How do you set the overflow scroll without the bottom scroll?
I only need to show the side scroll for the开发者_StackOverflow wrapper of the content.
This will show only vertical scrollbar.
#element {
overflow: auto;
}
OR:
overflow-x:hidden;
overflow-y:auto;
Some browsers support
overflow-x: visible|hidden|auto|scroll;
overflow-y: visible|hidden|auto|scroll;
精彩评论