不支持

滚动条样式

 
.class::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.class::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow: inset 0 0 5px #d9dbe1;
  background: #d9dbe1;
}
.class::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  border-radius: 10px;
}

/*兼容火狐*/
 .class{
    scrollbar-width: thin;
    scrollbar-color: #d9dbe1 transparent;
   }
 

 

posted @ 2020-11-05 09:43  骑上我的小摩托  阅读(74)  评论(0编辑  收藏  举报