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?
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?
html { overflow-x:hidden; overflow-y:auto; }
or { overflow-y:scroll; }
Haven't tested but try it.
overflow: auto; /* For CSS 2 user agents */
overflow-x: hidden; /* For UAs implementing the CSS 3 property */
overflow-x: auto; <- for horizontal scrolling overflow-y: auto; <- for vertical scrolling