vue设置和隐藏滚动条的方法

1、设置滚动条:

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

2、隐藏滚动条:

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

猜你喜欢

转载自blog.csdn.net/qq_41627870/article/details/88135432