Google Chrome
- :: -webkit-scrollBar — the entire scrollbar.
- ::-webkit-scrollbar-button — The button on the scrollbar (up and down arrows).
- ::-webkit-scrollbar-thumb — scroll slider on scrollbar.
- ::-webkit-scrollbar-track — Scrollbar track
- ::-webkit-scrollbar-track-piece — The track part of the scrollbar without a slider.
- ::-webkit-scrollbar-corner — the part where vertical and horizontal scrollbars meet.
- ::-webkit-resizer — Partial styles for the corner section of some elements (e.g., draggable button for textarea).
Firefox
*{
scrollbar-width: none;
}
Copy the code