我想知道如何防止为响应式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;
}
由于