内置滚动容器
2020-07-02 本文已影响0人
在下高姓
.div{
width: 100px;
height: 50px;
overflow-x: scroll;//设置横向滚动
display: flex;
}
.div::-webkit-scrollbar{//去除滚动条
display: none;
}
.div{
width: 100px;
height: 50px;
overflow-x: scroll;//设置横向滚动
display: flex;
}
.div::-webkit-scrollbar{//去除滚动条
display: none;
}