前言
在写页面css样式时候,有时会将滚动条隐藏不显示
实现
通过::-webkit-scrollbar { width: 0 !important }来实现
.L-adminmenubar {
position: fixed;
top: 50px;
left: 0px;
width: 166px;
height: calc(100% - 50px);
background: #333f48;
border-top: solid 2px #fff;
overflow-y:auto;
}
.L-adminmenubar::-webkit-scrollbar { width: 0 !important }