CSS 隐藏滚动条

378 阅读1分钟
.menuList{
    overflow-y:scroll;
}
.menuList::-webkit-scrollbar {
	display: none;
}