Scroll bar style modification after css overflow



 // 溢出的class
  .five-content {
    
    
    display: flex;
    overflow: auto;
    height: 437px;
  }
  //   滚动条样式
  .five-content::-webkit-scrollbar {
    
    
    width: 6px;
    // height: 10px;
    /**/
  }
  //背景样式
  .five-content::-webkit-scrollbar-track {
    
    
    background: rgba(23, 46, 39, 0.8);
    border: 1px solid rgba(214, 245, 172, 0.12);
  }
    //背景上面的条条样式
  .five-content::-webkit-scrollbar-thumb {
    
    
    background: #677961;
    border-radius: 4px;
  }

Guess you like

Origin blog.csdn.net/qq_38594056/article/details/116572978