123456789101112131415161718192021 |
- /* 滚动条样式 */
- ::-webkit-scrollbar {
- width: 12px;
- height: 12px;
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 6px;
- border: 2px solid transparent;
- background-color: #d9d9d9;
- cursor: pointer;
- background-clip: padding-box;
- }
- ::-webkit-scrollbar-thumb:hover {
- background-color: #bfbfbf;
- }
- ::-webkit-scrollbar-track {
- background: #f0f2f5;
- }
- ::-webkit-scrollbar-corner {
- background: transparent;
- }
|