Adding Custom Scrollbars in CSS


Customize the appearance of scrollbars using CSS properties.

Source Code

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments