自定义scrollbar, 包括宽度,颜色和圆角12345678910111213141516171819202122// custom scrollbar::-webkit-scrollbar { /* for vertical scrollbars */ width: 8px; /* for horizontal scrollbars */ height: 8px; border-radius: 8px;}::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 8px;}::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 8px; &:hover { background: #8c8c8c; }}