gpt4 book ai didi

javascript - 如何在 iOS Chrome 中使用 CSS scroll snap + picture bug 隐藏滚动条

转载 作者:太空宇宙 更新时间:2023-11-03 19:25:32 27 4
gpt4 key购买 nike

如何在 iOS Safari 和 Chrome 中隐藏 native 滚动条?我正在使用这段代码:

.scroll-snap-container::-webkit-scrollbar {
display: none!important;
height: 0;
width: 0;
background-color: transparent;
}

这不适用于 iOS Safari 和 Chrome。

Arrow showing native scrollbar when scrolling

最佳答案

尝试将其添加到您的代码中。

@media screen and (-webkit-min-device-pixel-ratio:0) { 
.scroll-snap-container::-webkit-scrollbar {
display: none!important;
height: 0;
width: 0;
background-color: transparent;
}
}

关于javascript - 如何在 iOS Chrome 中使用 CSS scroll snap + picture bug 隐藏滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56792969/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com