修改浏览器滚动条样式

/*滚动条*/
::-webkit-scrollbar {
  width: 5px; /*对垂直流动条有效*/
  height:5px;
}
/*设置滚动条滑块颜色*/
::-webkit-scrollbar-thumb{
  border-radius: 7px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #E8E8E8;
}

你可能感兴趣的:(修改浏览器滚动条样式)