Dijo David
Dijo David

Reputation: 6195

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 wrapper of the content.

Upvotes: 0

Views: 387

Answers (2)

Rafael
Rafael

Reputation: 18522

Some browsers support

overflow-x: visible|hidden|auto|scroll;
overflow-y: visible|hidden|auto|scroll;

Upvotes: 1

Māris Kiseļovs
Māris Kiseļovs

Reputation: 17295

This will show only vertical scrollbar.

#element {
    overflow: auto;
}

OR:

overflow-x:hidden;
overflow-y:auto;

Upvotes: 3

Related Questions