Skip to content

Instantly share code, notes, and snippets.

@yorkie
Created September 6, 2014 09:09
Show Gist options
  • Save yorkie/4bd99f3da6175beda897 to your computer and use it in GitHub Desktop.
Save yorkie/4bd99f3da6175beda897 to your computer and use it in GitHub Desktop.
Google Scrollbar Styles
::-webkit-scrollbar {
height: 15px;
width: 15px;
}
::-webkit-scrollbar-button {
height: 0;
width: 0;
}
::-webkit-scrollbar-thumb {
background-clip: padding-box;
background-color: rgba(0,0,0,.3);
border: 5px solid transparent;
border-radius: 10px;
min-height: 20px;
min-width: 20px;
height: 5px;
width: 5px;
}
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
background-color:rgba(0,0,0,.4);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment