简单css控制浏览器滚动条

  ::-webkit-scrollbar{
    width:8px;
    height:8px;
    border-radius: 8px;
  }
  ::-webkit-scrollbar-thumb{
    background-color: rgba(119,119,119,.5);
    border-radius: 8px;
  }

全局使用即可。---------------------可能只兼容google

你可能感兴趣的:(简单css控制浏览器滚动条)