关于css:css隐藏滚动条

34次阅读

共计 127 个字符,预计需要花费 1 分钟才能阅读完成。

.list {
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.list::-webkit-scrollbar {  
  display: none;
  width: 0px!important 
}

css 暗藏滚动条

正文完
 0