Custom Scrollbar

CSS can be used to style the scrollbar in modern browsers.

Snippet:

::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: #f1f1f1; } ::-webkit-scrollbar-thumb { background: #888; }

Example:

::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-thumb { background: darkgray; border-radius: 4px; }