css 隐藏滚动条

133 阅读1分钟

css 隐藏滚动条

 .weatherLeft {
     overflow-y: scroll;
 }
 ​
 .weatherLeft::-webkit-scrollbar {
     display: none;
  }