让元素溢出可以滚动并且不显示滚动条

44 阅读1分钟
element{
  overflow: scroll;              
}
element::-webkit-scrollbar {
    display: none;
}

<--element是父级容器-->