自定义滚动条样式

Webkit

The ::-webkit-scrollbar CSS pseudo-element affects the style of the scrollbar of an element.

::-webkit-scrollbar is only available in WebKit-based browsers (e.g., Safari, all browsers on iOS, and others).

CSS Scrollbar Selectors You can use the following pseudo elements to customize various parts of the scrollbar for webkit browsers:

::-webkit-scrollbar — the entire scrollbar. ::-webkit-scrollbar-button — the buttons on the scrollbar (arrows pointing upwards and downwards). ::-webkit-scrollbar-thumb — the draggable scrolling handle. ::-webkit-scrollbar-track — the track (progress bar) of the scrollbar. ::-webkit-scrollbar-track-piece — the part of the track (progress bar) not covered by the handle. ::-webkit-scrollbar-corner — the bottom corner of the scrollbar, where both horizontal and veritcal scrollbars meet. ::-webkit-resizer — the draggable resizing handle that appears at the bottom corner of some elements.

IE

  1. -ms-scroll-chaining
  2. -ms-scroll-limit
  3. -ms-scroll-limit-x-max
  4. -ms-scroll-limit-x-min
  5. -ms-scroll-limit-y-max
  6. -ms-scroll-limit-y-min
  7. -ms-scroll-rails
  8. -ms-scrollbar-3dlight-color
  9. -ms-scrollbar-arrow-color
  10. -ms-scrollbar-base-color
  11. -ms-scrollbar-darkshadow-color
  12. -ms-scrollbar-face-color
  13. -ms-scrollbar-highlight-color
  14. -ms-scrollbar-shadow-color
  15. -ms-scrollbar-track-color
  16. -ms-overflow-style

jungle