滚动条设置样式,overflow-y!

      .device-content::-webkit-scrollbar {
           width: 5px;
      }
      .device-content::-webkit-scrollbar-track {
        background: rgb(239, 239, 239);
        border-radius: 2px;
      }
      // 小滑块
      .device-content::-webkit-scrollbar-thumb {
        background: #32333549;
        border-radius: 10px;
      }
      .device-content::-webkit-scrollbar-thumb:hover {
         background: #141414;
      }

猜你喜欢

转载自blog.csdn.net/qq_44890362/article/details/131979825