修改滚动条样式(iview)

一开始是这样shi儿的

 

 修改代码之后

 

 代码:

// 修改滚动条样式
/deep/::-webkit-scrollbar {
  width: 6px; //竖轴宽度
  height: 6px; //横轴宽度
  background-color: rgba(99, 110, 246, 0.5);
}

/* 滚动槽 */
/deep/::-webkit-scrollbar-track {
  border-radius: 10px;
}

/deep/::-webkit-scrollbar-thumb {
  background-color: #636ef6;
}
 

当然具体的你可以根据需求自己调

ps:隐藏滚动条

// 隐藏滚动条
/deep/::-webkit-scrollbar {
  width: 0 !important;
}
/deep/::-webkit-scrollbar {
  width: 0 !important;
  height: 0;
}

 

 

posted @ 2020-09-16 15:20  草莓糖&薄荷茶  阅读(1931)  评论(0)    收藏  举报