css 优化谷歌、火狐浏览器的滚动条样式

/* 谷歌美化滚动条 */
  *::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  *::-webkit-scrollbar-track {
    background: #f3f4f9;
    border-radius: 2px;
  }

  *::-webkit-scrollbar-thumb {
    background: #c8d2e0;
    border-radius: 10px;
  }

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

  *::-webkit-scrollbar-corner {
    background: #c8d2e0;
  }


  /* 火狐美化滚动条 */
  * {
    scrollbar-color: #c8d2e0 #f3f4f9;
    /* 滑块颜色  滚动条背景颜色 */
    scrollbar-width: thin;
    /* 滚动条宽度有三种:thin、auto、none */
  }

 

posted @ 2020-09-30 09:03  Deer_Lin  阅读(979)  评论(0)    收藏  举报