vue中设置滚动条与去除滚动条

6,318 阅读1分钟

设置滚动条

overflow-x: scroll; 
white-space: nowrap;

去除滚动条

   ::-webkit-scrollbar {
     width: 0 !important;
   }
   ::-webkit-scrollbar {
     width: 0 !important;height: 0;
   }