是否可以在移动设备上隐藏网页滚动条?

问题描述 投票:0回答:2

我正在尝试在移动设备上隐藏滚动条。桌面上没有任何东西看起来很好(没有srollbar),但是当我检查一些Android设备(ipad)时 - 我仍然可以看到灰色,瘦的拇指。可以从浏览器隐藏预定义的滚动条。

我的代码(在桌面上运行良好)。

body::-webkit-scrollbar {
  background-color: #fff;
}

body::-webkit-scrollbar-thumb {
  background-color: #fff;
}
html css mobile scrollbar
2个回答
0
投票

使用-webkit-appearance:none隐藏滚动条。

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

0
投票
Try this 
::-webkit-scrollbar {
width: 0px;
background: transparent; /* make scrollbar transparent */
}
© www.soinside.com 2019 - 2024. All rights reserved.