📜  更改滚动样式角度 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:53.538000             🧑  作者: Mango

代码示例1
::-webkit-scrollbar-thumb
{
    background: red !important;
}
::-webkit-scrollbar {
    height: 4px;
    width: 4px;
  }
  
::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.26) !important;
  }