Skip to content

Instantly share code, notes, and snippets.

@adikahorvath
Created January 7, 2014 15:38
Show Gist options
  • Save adikahorvath/8301150 to your computer and use it in GitHub Desktop.
Save adikahorvath/8301150 to your computer and use it in GitHub Desktop.
custom webkit scrollbar
div {
height: 300px;
overflow-y: scroll;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
-webkit-border-radius: 10px;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: rgba(0,0,0,.3);
}
::-webkit-scrollbar-thumb:hover {
background: rgba(0,0,0,.4);
}
::-webkit-scrollbar-thumb:window-inactive {
background: rgba(0,0,0,.2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment