Chrome scroll bar style

.ordered-scrollbar::-webkit-scrollbar {
    
    
  /*滚动条整体样式*/
  width: 6px; /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.ordered-scrollbar::-webkit-scrollbar-thumb {
    
    
  /*滚动条里面小方块*/
  border-radius: 10px;
  background: #364b71;
}
.ordered-scrollbar::-webkit-scrollbar-track {
    
    
  // background: none;
  border-radius: 10px;
  background: #16294b;
}

Guess you like

Origin blog.csdn.net/yuyu_2019/article/details/114013420