更改滚动条样式


.chosePart {
      padding: 12px 0;
      height: 280px;
      overflow-y: auto;
    }

    .chosePart::-webkit-scrollbar {
      width: 5px;
      height: 5px;
    }

    .chosePart::-webkit-scrollbar-track {
      background: rgb(239, 239, 239);
      border-radius: 2px;
    }

    .chosePart::-webkit-scrollbar-thumb {
      background: #bfbfbf;
      border-radius: 5px;
    }

    .chosePart::-webkit-scrollbar-thumb:hover {
      background: #333;
    }

    .chosePart::-webkit-scrollbar-corner {
      background: #179a16;
    }

 

posted on 2022-11-09 13:59    阅读(58)  评论(0)    收藏  举报

导航