开发者

Can you make a HTML element overflow-scroll ONLY vertically?

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 开发者_如何学Gothis?


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 */


Yes.

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


For horizontal scrolling:

overflow-x: auto;

For vertical scrolling:

overflow-y: auto;
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜