首先,出现滚动条需要有height
方式一:
.el-main {
height: 800px;
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: none;
}
方式二:
.element::-webkit-scrollbar { width: 0 !important }
方式三:
::-webkit-scrollbar {
display: none;
}
首先,出现滚动条需要有height
方式一:
.el-main {
height: 800px;
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: none;
}
方式二:
.element::-webkit-scrollbar { width: 0 !important }
方式三:
::-webkit-scrollbar {
display: none;
}