Reputation: 13
Can I design the scrollbar that comes with the overflow:scroll of an element? For example giving it border radius to become rounder?
Upvotes: 1
Views: 1911
Reputation: 71140
You can style scrollbars to a degree in both webkit browsers and IE, for Firefox no such CSS exists however so you will need to resort to using a Javascript plugin
::-webkit-scrollbar
::-webkit-scrollbar-button
::-webkit-scrollbar-track
::-webkit-scrollbar-track-piece
::-webkit-scrollbar-thumb
::-webkit-scrollbar-corner
::-webkit-resizer
scrollbar-face-color
scrollbar-shadow-color
scrollbar-highlight-color
scrollbar-3dlight-color
scrollbar-darkshadow-color
scrollbar-track-color
scrollbar-arrow-color
Upvotes: 2