This question already has answers here:
Hide scroll bar, but while still being able to scroll
                                
                                    (31个答案)
                                
                        
                                4年前关闭。
            
                    
我有一个overflow:scroll的div,水平滚动。
如何在CSS中隐藏div的滚动条?

最佳答案

使用webkit。

.hiddenscrollbars::-webkit-scrollbar {
    display: none;
}


JSFiddle

关于css - 如何在CSS中 overflow hidden 的div的滚动条而不使用overflow:hidden? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30342043/

10-09 19:10
查看更多