开发者

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;
0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜