设置浏览器滚动条样式

在全局样式中添加

::-webkit-scrollbar {
    
    
  width: 4px;
  height: 6px;
}
::-webkit-scrollbar-corner {
    
    
  display: block;
}
::-webkit-scrollbar-thumb {
    
    
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-track {
    
    
  border-right-color: transparent;
  border-left-color: transparent;
  background-color: rgba(0, 0, 0, 0.3);
}

猜你喜欢

转载自blog.csdn.net/weixin_44949068/article/details/128658636