CSS 实现隐藏滚动条同时又可以滚动

.content{
    overflow: auto;
} 
.content::-webkit-scrollbar {
    display:none;
}

你可能感兴趣的:(CSS 实现隐藏滚动条同时又可以滚动)