css 设置overflow:scroll 滚动条的样式

匿名 (未验证) 提交于 2019-12-02 20:32:16
  /* 定义滚动条样式 */ ::-webkit-scrollbar {   width: 6px;   height: 6px;   background-color: rgba(240, 240, 240, 1); }  /*定义滚动条轨道 内阴影+圆角*/ ::-webkit-scrollbar-track {   box-shadow: inset 0 0 0px rgba(240, 240, 240, .5);   border-radius: 10px;   background-color: rgba(240, 240, 240, .5); }  /*定义滑块 内阴影+圆角*/ ::-webkit-scrollbar-thumb {   border-radius: 10px;   box-shadow: inset 0 0 0px rgba(240, 240, 240, .5);   background-color: rgba(240, 240, 240, .5); } 

  

文章来源: https://www.cnblogs.com/web-aqin/p/11244121.html
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!