0

我只是想知道是否有overflow: scroll隐藏滚动条的可滚动区域(即)的解决方案?我在谷歌搜索时没有找到解决方案,所以我在这里问。如果 CSS 可以做到这一点,那就太酷了。但是如果有 JS 或 php 的解决方案,我仍然想知道。

4

1 回答 1

2

通过将 a 绝对定位container在与隐藏溢出相对定位的外部容器中,您可以将内部容器的滚动条隐藏在第一个容器之外。

所以滚动条仍然存在,但您将无法看到它。

    #outer {
        position: relative;
        width: 200px;
        height: 300px;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    #inner {
        position: absolute;
        left: 0;
        top: 0;
        right: -30px;
        bottom: 0;  
        padding-right: 15px;
        overflow-y: scroll;
    }

JSFiddle:http: //jsfiddle.net/g6URf/

于 2013-10-08T13:42:25.193 回答