防止滚动隐藏在iPhone或Ipad上

时间:2015-12-22 15:26:08

标签: css scroll responsive-design

我想知道如何防止为响应式Web应用程序隐藏滚动条。

如果有可能,我想为此使用纯CSS。

代码示例

::-webkit-scrollbar {
    -webkit-appearance: none;
    }

    ::-webkit-scrollbar:horizontal {
        height: 11px;
    }

    ::-webkit-scrollbar-thumb {
        border-radius: 8px;
        border: 2px solid white; /* should match background, can't be transparent */
        background-color: rgba(0, 0, 0, .5);
    }

    ::-webkit-scrollbar-track { 
        background-color: #fff; 
        border-radius: 8px; 
    } 

由于

0 个答案:

没有答案