CSS
自定义滚动条
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
::-webkit-scrollbar-thumb {
border-radius: 3px;
background-color: #888;
}
::-webkit-scrollbar-thumb:hover {
background-color: #ccc;
}绘制三角形
添加主题颜色
Last updated