6

/* width */ ::-webkit-scrollbar { width: 10px; }

/* Track */ ::-webkit-scrollbar-track { background: #f1f1f1; }

/* Handle */ ::-webkit-scrollbar-thumb { background: #888; }

/* Handle on hover */ ::-webkit-scrollbar-thumb:hover { background: #555; }

to change colours just edit the hex values to desired colours. NOTE does not work on Firefox or IE & Edge

/* width */ ::-webkit-scrollbar { width: 10px; } /* Track */ ::-webkit-scrollbar-track { background: #f1f1f1; } /* Handle */ ::-webkit-scrollbar-thumb { background: #888; } /* Handle on hover */ ::-webkit-scrollbar-thumb:hover { background: #555; } to change colours just edit the hex values to desired colours. *NOTE* does not work on Firefox or IE & Edge

No comments, yet...