跳至主要內容

自定义滚动条样式(layui.v1)

易墨2018年5月17日小于 1 分钟Webweb开发

来源于 layui

css 代码




::-webkit-scrollbar {

  width: 10px;

  height: 10px;

}

::-webkit-scrollbar-button,

::-webkit-scrollbar-button:vertical {

  display: none;

}

::-webkit-scrollbar-track,

::-webkit-scrollbar-track:vertical {

  background-color: black;

}

::-webkit-scrollbar-track-piece {

  background-color: #f5f5f5;

}

::-webkit-scrollbar-thumb,

::-webkit-scrollbar-thumb:vertical {

  margin-right: 10px;

  background-color: #a6a6a6;

}

::-webkit-scrollbar-thumb:hover,

::-webkit-scrollbar-thumb:vertical:hover {

  background-color: #aaa;

}

::-webkit-scrollbar-corner,

::-webkit-scrollbar-corner:vertical {

  background-color: #535353;

}

::-webkit-scrollbar-resizer,

::-webkit-scrollbar-resizer:vertical {

  background-color: #ff6e00;

}

效果图

相关资料