Reputation: 63738
Is it possible to set a to add a scroll-bar vertically but clip horizontally?
EDIT I see some mention on CSS3 in answers. Which browsers support this?
Upvotes: 3
Views: 598
Reputation: 2430
For horizontal scrolling:
overflow-x: auto;
For vertical scrolling:
overflow-y: auto;
Upvotes: 0
Reputation: 943591
overflow: auto; /* For CSS 2 user agents */
overflow-x: hidden; /* For UAs implementing the CSS 3 property */
Upvotes: 3
Reputation: 186562
html { overflow-x:hidden; overflow-y:auto; }
or { overflow-y:scroll; }
Haven't tested but try it.
Upvotes: 7