css3滚动条美化

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

你可能感兴趣的:(前端,css3,css,html)