Custom Scrollbar Chrome

Custom Scrollbar Google Chrome:

::-webkit-scrollbar {
 width: 9px;
 height:0px
}

::-webkit-scrollbar-track {
 -webkit-border-radius: 0px;
 border-radius: 0px;
 background:#ccc;
}

::-webkit-scrollbar-thumb {
 -webkit-border-radius: 0px;
 border-radius: 0px;
 background: rgba(0,0,0,0.3);
}
::-webkit-scrollbar-thumb:window-inactive {
 background: rgba(0, 0, 0, 0.3);
}

Comments