vue,css实现元素隐藏或取消滚动条
vue和html适用的实现元素隐藏或取消滚动条,原理是css的功能。
·
对于元素css使用overflow: scroll;出现的滚动条问题,如果想要隐藏或者取消只需要对这个元素进行一下操作。
.scroll{
overflow: scroll;
}
.scroll::-webkit-scrollbar{//隐藏或取消滚动条
display: none;
}
更改滚动条样式
::-webkit-scrollbar-thumb {
border-radius: 5px;
background-color: rgb(219, 219, 219);
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
更多推荐
已为社区贡献7条内容
所有评论(0)