开发者

Setting overflow scroll without bottom scroll

开发者 https://www.devze.com 2023-01-08 13:25 出处:网络
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.

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

精彩评论

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